2018-06-24 19:42:34 +00:00
|
|
|
# Calendar.social
|
|
|
|
# Copyright (C) 2018 Gergely Polonkai
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2018-06-28 06:31:11 +00:00
|
|
|
import os
|
|
|
|
|
2018-06-26 05:23:53 +00:00
|
|
|
from flask import Flask, render_template
|
2018-06-29 08:38:18 +00:00
|
|
|
from flask_babel import Babel
|
2018-06-24 19:42:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
class CalendarSocialApp(Flask):
|
2018-06-28 06:31:11 +00:00
|
|
|
def __init__(self, name, config=None):
|
2018-06-28 12:41:14 +00:00
|
|
|
from app.models import db
|
|
|
|
|
2018-06-24 19:42:34 +00:00
|
|
|
Flask.__init__(self, name)
|
|
|
|
|
2018-06-28 06:31:11 +00:00
|
|
|
config_name = os.environ.get('ENV', config or 'dev')
|
|
|
|
self.config.from_pyfile(f'config_{config_name}.py', True)
|
2018-06-28 12:41:14 +00:00
|
|
|
db.init_app(self)
|
2018-06-29 08:38:18 +00:00
|
|
|
babel = Babel(app=self)
|
2018-06-28 06:31:11 +00:00
|
|
|
|
2018-06-24 19:42:34 +00:00
|
|
|
|
|
|
|
app = CalendarSocialApp(__name__)
|
|
|
|
|
2018-06-29 07:04:24 +00:00
|
|
|
|
2018-06-24 19:42:34 +00:00
|
|
|
@app.route('/')
|
|
|
|
def hello():
|
2018-06-29 05:58:28 +00:00
|
|
|
return render_template('welcome.html')
|
2018-06-24 19:42:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
app.run()
|