Coverage for yaptide/settings.py: 0%

4 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-07-01 12:55 +0000

1# -*- coding: utf-8 -*- 

2"""Application configuration. 

3Most configuration is set via environment variables. 

4For local development, use a .env file to set 

5environment variables. 

6""" 

7from environs import Env 

8 

9env = Env() 

10env.read_env()