Coverage for yaptide/settings.py: 0%

3 statements  

« prev     ^ index     » next       coverage.py v7.6.4, created at 2024-11-22 07:31 +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()