🔧(core) add test env file

I am adding this file containing the
variables needed to run test without
docker

Signed-off-by: charles <[email protected]>
This commit is contained in:
charles
2026-02-16 16:43:14 +01:00
parent 2b0afead5b
commit 745ab6aabc
2 changed files with 11 additions and 0 deletions
+4
View File
@@ -147,6 +147,10 @@ $ make frontend-test
$ make frontend-lint
```
Backend tests can be run without docker with the env files
`env.d/development/common` and `env.d/development/common.test`.
`common.test` must overwrite some variables in `common`.
**Adding content**
You can create a basic demo site by running this command:
+7
View File
@@ -0,0 +1,7 @@
# Test environment configuration for running tests without docker
# Base configuration is loaded from 'common' file
DJANGO_SETTINGS_MODULE=impress.settings
DJANGO_CONFIGURATION=Test
DB_PORT=15432
AWS_S3_ENDPOINT_URL=http://localhost:9000