React + Django + Docker-Compose
- install docker-compose
- create
.envfile in/backendby copping from.env.example - build using docker-compose: run
make build - run migrations:
make run-migrations - create superuser:
make create-superuser - to start project just run:
make up - project should be running in http://localhost:3000 and the backend at http://localhost:8000
- In
urls.pyyou can define the endpoints, check already defined examples
- the entire project doesn't have a single test
- the frontend is quite a mess