Jeu de belote en ligne.

settings.example.cfg 278B

12345678910
  1. # App configuration file
  2. # copy this file to settings.cfg
  3. # Generate a secure key with
  4. # python -c "import os, base64; print(base64.b64encode(os.urandom(24)))"
  5. SECRET_KEY = "to-be-changed"
  6. SQLALCHEMY_DATABASE_URI = 'sqlite:///db.sqlite'
  7. SQLALCHEMY_TRACK_MODIFICATIONS = False