Django App for invoices
Check out our documentation
To start the server with the provided docker compose file use the following command:
docker compose up
However, you need to set up a few environment variables.
| Env Var | Value |
|---|---|
| SECRET_KEY | Security string. Must not be shared. |
| ALLOWED_HOSTS | List of you hostname you want to access the application. E.g. example.com,10.56.120.9. |
| DATABASE_URL | Database URL. |
| CSRF_TRUSTED_ORIGINS | (Optional, Default: http://*,https://*) Used for endpoint names under which the server can be targeted. This is required for POST requests. |