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