neptune-back/README.md
Mathis ebdc3d0109
Enable user crypto amount selection and update deployment docs
Added the ability to select user crypto amounts in the user service. Removed commented-out code in the offer controller for clarity. Updated the README with deployment and production instructions.
2024-11-22 11:06:50 +01:00

25 lines
451 B
Markdown

# neptune-back
The project to validate my DWWM diploma on the back end.
## Déploiement
- Configurer les variables d'environnements
- Mettre en ligne la base de donnée
> Si en production lancée avec le reste de l'application via docker-compose.yml
```shell
pnpm install
pnpm exec prisma generate
pnpm exec prisma migrate deploy
```
### En dèveloppement
```shell
pnpm start:dev
```
### En mode production
```shell
pnpm build
pnpm start:prod
```