NotificamⒺsta is built with Flask, a Python framework for web applications.
Distributed under the MIT License.
Issues should be opened through GitHub Issues; whenever possible, a pull request should be included. Questions and suggestions are welcome.
$ pip install -r requirements.txt
$ export PYTHONPATH="/full/path/to/root/folder/"
Configure SQLAlchemy development database with
DATABASE_URL
environment variable like:
DATABASE_URL="postgresql://myuser:mypassword@localhost/mydatabase"
and other custom environment variables located in .env
$ cp .env.skel .env
Then create the schema:
$ flask shell
>>> from notificamesta import db
>>> db.create_all()
Use shell.sh
to run a flask shell with the proper contexts and
devserver.sh
for a development server.
MIT licensed.