This commit is contained in:
2024-05-16 18:41:04 +02:00
commit 1e49f104d7
41 changed files with 1196 additions and 0 deletions

20
README.md Normal file
View File

@@ -0,0 +1,20 @@
## First run
* install https://nodejs.org/en (tested with version 20)
* install https://www.python.org/ (tested with version 3.12)
* `cp .env.sample .env`
* modify .env
* follow requirements sections
## Requirements python
* ### for dev : `pip install -r requirements/dev.txt`
* ### for prod : `pip install -r requirements/prod.txt`
## Requirements nodejs
* `cd frontend` and `npm install`
## Run project
* ### for dev :
* in base dir `python manage.py runserver`
* in frontend dir `npm run dev`
* ### for prod : in frontend dir `npm run build`