settings.py 197 B

12345678910
  1. import os
  2. import json
  3. SETTINGS = {
  4. 'BASE_DIR': os.path.abspath(os.path.dirname(__file__)),
  5. 'debug': True,
  6. 'maximized': True,
  7. 'fullscreen': False,
  8. 'app_name': 'kaute based project template',
  9. }