1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-19 19:01:03 +00:00
supysonic/main.py
2012-10-13 11:29:48 +02:00

14 lines
217 B
Python
Executable File

# coding: utf-8
from web import app
import db, config
if __name__ == '__main__':
if not config.check():
print >>sys.stderr, "Couldn't find configuration file"
sys.exit(1)
db.init_db()
app.run(debug = True)