In development:
- webpack-dev-server listens on the port 3000
- it serves your frontend app's bundle.js
- it manages hot reloading
To build the application, launch:
docker-compose build
What you need to do to (re)start the project:
-
start the frontend:
cd frontend yarn install yarn start
The project should now be running at localhost:3000.
-
start backend and frontend:
docker-compose up -d
-
populate your database:
make populate-db
The project should now be running at https://localhost.