Skip to content
Snippets Groups Projects
Select Git revision
  • 133449ed8e29e4b050bbf0c013ad614846ccba83
  • main default
2 results

README.md

Blame
  • user avatar
    Aymeric Chaumont authored
    9266c27b
    History

    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


    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