conf.py 421 B

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