File: test_settings.py

package info (click to toggle)
python-envs 1.2.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 128 kB
  • sloc: python: 264; makefile: 8
file content (7 lines) | stat: -rw-r--r-- 159 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
from envs import env

DATABASE_URL = env('DATABASE_URL')

DEBUG = env('DEBUG', False, var_type='boolean')

MIDDLEWARE = env('MIDDLEWARE', [], var_type='list')