To run the CODECOV you need to create an account, link your repository and add the TOKEN in github actions environment.
$ make install
$ make run
Sample .env.prod file:
DJANGO_SETTINGS_MODULE=myservice.settings.production
DJANGO_SECRET_KEY=areallysupersecretkey
DEBUG=False
STATIC_URL=/static/
STATIC_ROOT=static
ALLOWED_HOSTS='*','localhost'
- Developer mode
$ make install && make dev
- Docker compose
Build project and start
$ docker-compose build
Start with a pre builded project
$ docker-compose up
- Lint and Prettify code
$ make lint
- Coverage and test
Run only tests
$ make test
Run coverage
$ make coverage
- Swagger Go to http://localhost:8000/swagger/ URL to see the API documentation