PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come usare Flask/Peewee con Heroku?

Stai analizzando la variabile di ambiente DATABASE_URL? Sarà simile a questo:

postgres://username:[email protected]:port/database_name

Quindi vorrai estrarlo e analizzarlo prima di aprire una connessione al tuo database. A seconda di come hai dichiarato il tuo database (nella tua configurazione o accanto alla tua app wsgi) potrebbe apparire così:

import os
import urlparse

urlparse.uses_netloc.append('postgres')
url = urlparse.urlparse(os.environ['DATABASE_URL'])

# for your config
DATABASE = {
    'engine': 'peewee.PostgresqlDatabase',
    'name': url.path[1:],
    'password': url.password,
    'host': url.hostname,
    'port': url.port,
}

Vedi le note qui:https://devcenter.heroku.com/articles/django