Skip to content
Snippets Groups Projects
Select Git revision
  • 162fdeacd8f3db61baff33e210e46c3036be9fdb
  • main default
2 results

eatfast-website

user avatar
Aymeric Chaumont authored
Collaborative

See merge request !41
162fdeac
History
Name Last commit Last update
backend
frontend
.gitignore
.gitlab-ci.yml
README.md

README

Run the server-side FastAPI app

In development mode

You can start a virtual environment with the following instructions.

$ cd backend
$ python3.9 -m venv env
$ source env/bin/activate

Then you need to install the dependencies by executing pip install -r requirements.txt
Comment the app service in the docker-compose.yml then build and run the file.
Start the development server running python -m uvicorn main:app --reload --port=3001 --host 0.0.0.0

Navigate to http://localhost:3001


Le linter

So the new commits can be deployed, you'll need to use the linter from backend :
pycodestyle --config=./setup.cnf --exclude=./env ./
You can use autoformat with autopep8 running :
autopep8 --in-place --global-config=./setup.cnf --recursive --exclude=./env --aggressive ./


In production mode

Build the docker image : docker-compose build
Run the server, docker-compose up -d


Run the client-side React app in a different terminal window:

$ cd frontend
$ npm install
$ npm run start

Navigate to http://localhost:3000