You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
268 B
Python
17 lines
268 B
Python
9 years ago
|
from flask import Flask
|
||
|
from flask_sqlalchemy import SQLAlchemy
|
||
|
|
||
|
|
||
|
|
||
|
# Create application
|
||
|
app = Flask(__name__)
|
||
|
|
||
|
app.config.update({
|
||
|
'SQLALCHEMY_DATABASE_URI': 'sqlite:////tmp/freeposte.db'
|
||
|
})
|
||
|
|
||
|
# Create the database
|
||
|
db = SQLAlchemy(app)
|
||
|
|
||
|
from freeposte import views
|