conf.py 517 B

12345678910111213141516
  1. GITHUB_USER, GITUB_PASSWORD = "user", "secret"
  2. POST_KEY = '6361675'
  3. FRANK_DATABASE = 'frank.sqlite3'
  4. SECRET_KEY_NAME='X-Secret'
  5. # IF using github, you should change 'X-Secret' to 'X-Hub-Signature'
  6. # notes about config
  7. # the config should be able to set destroy build or not.
  8. # each build is done in a directory names after the git hash
  9. # if the build is successful it will be removed, and if not it will
  10. # be conditionally removed.
  11. from huey import SqliteHuey
  12. taskq = SqliteHuey('frank', location=FRANK_DATABASE)