File: test_config.py

package info (click to toggle)
flask-peewee 3.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,136 kB
  • sloc: javascript: 9,322; python: 3,904; makefile: 135; sh: 16
file content (10 lines) | stat: -rw-r--r-- 193 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
# config

class Configuration(object):
    DATABASE = {
        'name': 'test.db',
        'engine': 'peewee.SqliteDatabase',
    }
    DEBUG = True
    SECRET_KEY = 'shhhh'
    TESTING = True