From 72ece668d33883391ac203b46af9d12e0eaa071a Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Mon, 26 May 2025 17:36:12 +0300 Subject: [PATCH] Features: Fixes: Extra: 1) Update ruff exclude list to include `static` and `storefront`; 2) Update environment variable names in README for consistency. --- README.md | 6 +++--- ruff.toml | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 47e4d6c0..f6d53f02 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/ruff.toml b/ruff.toml index 090126d9..d04d0118 100644 --- a/ruff.toml +++ b/ruff.toml @@ -6,6 +6,8 @@ target-version = "py38" exclude = [ "migrations", "media", + "static", + "storefront", ] [lint]