mirror of
https://github.com/kennethreitz-archive/callingme-service.git
synced 2026-06-05 07:16:12 +00:00
procfile
This commit is contained in:
+2
-1
@@ -1,16 +1,17 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
from flask import Flask
|
||||
from flask_heroku import Heroku
|
||||
from flask_sslify import SSLify
|
||||
from raven.contrib.flask import Sentry
|
||||
from flask.ext.celery import Celery
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
heroku = Heroku(app)
|
||||
sentry = Sentry(app)
|
||||
sslify = SSLify(app)
|
||||
celery = Celery(app)
|
||||
|
||||
app.debug = True
|
||||
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import env
|
||||
import dynamo
|
||||
|
||||
d = env.prefix('dynamo_')
|
||||
|
||||
table = dynamo.table(d['table'], (d['access_key'], d['secret_access_key']))
|
||||
Reference in New Issue
Block a user