App templates from rapidmvp. Check out the project's documentation.
Just clone it, add your features, deploy
- JWT/Social Authentication
- Deployment ready (Heroku)
- CORS handling
- Bring Your Config
Start the dev server for local development:
docker-compose up
Run a command inside the docker container:
docker-compose run --rm web [command]
DATABASE_URL: ***
DJANGO_AWS_ACCESS_KEY_ID: ***
DJANGO_AWS_REGION: ***
DJANGO_AWS_SECRET_ACCESS_KEY: ***
DJANGO_AWS_STORAGE_BUCKET_NAME: ***
DJANGO_DEBUG: ***
DJANGO_SECRET_KEY: ***
DJANGO_SUPERUSER_EMAIL: ***
DJANGO_SUPERUSER_PASSWORD: ***
- Login:
heroku container:login
- Build the image:
# Apple Mac/ARM (M1):
docker buildx -t registry.heroku.com/<app_name>/web .
# Non-M1 Machines:
docker build -t registry.heroku.com/<app_name>/web .
- Push to the registry:
docker push registry.heroku.com/<app_name>/web
- Release the image:
heroku container:release -a <app_name> web