Features:

Fixes:

Extra: 1) Update ruff exclude list to include `static` and `storefront`; 2) Update environment variable names in README for consistency.
This commit is contained in:
Egor Pavlovich Gorbunov 2025-05-26 17:36:12 +03:00
parent c6664bc640
commit 72ece668d3
2 changed files with 5 additions and 3 deletions

View file

@ -64,9 +64,9 @@ Don't forget to change the
The project uses environment variables for configuration. Below is an example of the `.env` file:
```plaintext
PROJECT_NAME="eVibes"
FRONTEND_DOMAIN="evibes.com"
BASE_DOMAIN="evibes.com"
EVIBES_PROJECT_NAME="eVibes"
EVIBES_FRONTEND_DOMAIN="evibes.com"
EVIBES_BASE_DOMAIN="evibes.com"
SENTRY_DSN=""
DEBUG=1

View file

@ -6,6 +6,8 @@ target-version = "py38"
exclude = [
"migrations",
"media",
"static",
"storefront",
]
[lint]