-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from ungdev/pnpm
fix: from yarn to pnpm
- Loading branch information
Showing
9 changed files
with
13,868 additions
and
13,470 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
# production | ||
/build | ||
yarn-error.log | ||
pnpm-error.log | ||
|
||
# misc | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# React dotenv | ||
|
||
NODE_ENV=development | ||
PORT=8081 | ||
|
||
# Pour désactiver l'ouverture dans un nouvel onglet | ||
BROWSER=none | ||
|
||
|
||
# App dotenv. These variables are used DURING react build. | ||
# For this reason, the values below will only be used with | ||
# `yarn dev`. For values used along with `yarn build`, check | ||
# the Dockerfile (docker build arguments) | ||
|
||
REACT_APP_API_URI=http://localhost:3001 | ||
# React dotenv | ||
|
||
NODE_ENV=development | ||
PORT=8081 | ||
|
||
# Pour désactiver l'ouverture dans un nouvel onglet | ||
BROWSER=none | ||
|
||
|
||
# App dotenv. These variables are used DURING react build. | ||
# For this reason, the values below will only be used with | ||
# `pnpm dev`. For values used along with `pnpm build`, check | ||
# the Dockerfile (docker build arguments) | ||
|
||
REACT_APP_API_URI=http://localhost:3001 | ||
REACT_APP_API_TIMEOUT=5000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,30 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# CRA Typescript file generated | ||
src/*.d.ts | ||
|
||
TODO.txt | ||
bouffe-captures/ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env | ||
|
||
# debug | ||
npm-debug.log* | ||
pnpm-debug.log* | ||
pnpm-error.log* | ||
|
||
# CRA Typescript file generated | ||
src/*.d.ts | ||
|
||
TODO.txt | ||
bouffe-captures/ | ||
|
||
# IDE | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
# UA Bouffe API | ||
[![Build Status](https://travis-ci.org/ungdev/UA-bouffe.svg?branch=master)](https://travis-ci.org/ungdev/UA-bouffe) | ||
|
||
Console de vente de l'UTT Arena | ||
|
||
## Installation | ||
|
||
### Prérequis | ||
|
||
- NodeJS | ||
- Yarn | ||
|
||
### Installation de l'application | ||
``` | ||
git clone https://github.com/ungdev/UA-bouffe | ||
cp .env.example .env | ||
yarn | ||
``` | ||
## Développement | ||
|
||
### Démarrer l'API en développement | ||
``` | ||
yarn dev | ||
``` | ||
### Avant de commit | ||
Afin de garder une certaine cohérence dans le code, on utilise EsLint et Prettier. Il faut donc bien lint le code avant de commit | ||
``` | ||
yarn lint-fix | ||
``` | ||
|
||
### Démarrer l'API en production | ||
``` | ||
yarn build | ||
yarn start | ||
``` | ||
### Licence | ||
Le code est sous licence MIT. | ||
# UA Bouffe API | ||
[![Build Status](https://travis-ci.org/ungdev/UA-bouffe.svg?branch=master)](https://travis-ci.org/ungdev/UA-bouffe) | ||
|
||
Console de vente de l'UTT Arena | ||
|
||
## Installation | ||
|
||
### Prérequis | ||
|
||
- NodeJS | ||
- Pnpm | ||
|
||
### Installation de l'application | ||
``` | ||
git clone https://github.com/ungdev/UA-bouffe | ||
cp .env.example .env | ||
pnpm | ||
``` | ||
## Développement | ||
|
||
### Démarrer l'API en développement | ||
``` | ||
pnpm dev | ||
``` | ||
### Avant de commit | ||
Afin de garder une certaine cohérence dans le code, on utilise EsLint et Prettier. Il faut donc bien lint le code avant de commit | ||
``` | ||
pnpm lint-fix | ||
``` | ||
|
||
### Démarrer l'API en production | ||
``` | ||
pnpm build | ||
pnpm start | ||
``` | ||
### Licence | ||
Le code est sous licence MIT. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.