├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.rst ├── flask_now ├── .gitignore ├── __init__.py ├── now.py └── templates │ ├── __init__.py │ ├── blueprints │ ├── project │ │ ├── __init__.py │ │ ├── blueprints │ │ │ ├── __init__.py │ │ │ └── index │ │ │ │ ├── __init__.py │ │ │ │ ├── controller.py │ │ │ │ └── forms.py │ │ ├── config.py │ │ ├── models.py │ │ ├── static │ │ │ ├── css │ │ │ │ └── main.css │ │ │ └── js │ │ │ │ └── script.js │ │ └── templates │ │ │ └── index.html │ └── run.py │ └── simple │ ├── config.py │ ├── models.py │ └── run.py ├── images ├── flask-now.gif └── logo.png ├── setup.py ├── setup.sh └── twine.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/README.rst -------------------------------------------------------------------------------- /flask_now/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/flask_now/.gitignore -------------------------------------------------------------------------------- /flask_now/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flask_now/now.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/flask_now/now.py -------------------------------------------------------------------------------- /flask_now/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flask_now/templates/blueprints/project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/flask_now/templates/blueprints/project/__init__.py -------------------------------------------------------------------------------- /flask_now/templates/blueprints/project/blueprints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flask_now/templates/blueprints/project/blueprints/index/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flask_now/templates/blueprints/project/blueprints/index/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/flask_now/templates/blueprints/project/blueprints/index/controller.py -------------------------------------------------------------------------------- /flask_now/templates/blueprints/project/blueprints/index/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/flask_now/templates/blueprints/project/blueprints/index/forms.py -------------------------------------------------------------------------------- /flask_now/templates/blueprints/project/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/flask_now/templates/blueprints/project/config.py -------------------------------------------------------------------------------- /flask_now/templates/blueprints/project/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/flask_now/templates/blueprints/project/models.py -------------------------------------------------------------------------------- /flask_now/templates/blueprints/project/static/css/main.css: -------------------------------------------------------------------------------- 1 | /* Your css code goes here */ -------------------------------------------------------------------------------- /flask_now/templates/blueprints/project/static/js/script.js: -------------------------------------------------------------------------------- 1 | /* Js goes here */ -------------------------------------------------------------------------------- /flask_now/templates/blueprints/project/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/flask_now/templates/blueprints/project/templates/index.html -------------------------------------------------------------------------------- /flask_now/templates/blueprints/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/flask_now/templates/blueprints/run.py -------------------------------------------------------------------------------- /flask_now/templates/simple/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/flask_now/templates/simple/config.py -------------------------------------------------------------------------------- /flask_now/templates/simple/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/flask_now/templates/simple/models.py -------------------------------------------------------------------------------- /flask_now/templates/simple/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/flask_now/templates/simple/run.py -------------------------------------------------------------------------------- /images/flask-now.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/images/flask-now.gif -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/images/logo.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanonurtek/flask-now/HEAD/setup.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- 1 | python3 setup.py sdist 2 | -------------------------------------------------------------------------------- /twine.sh: -------------------------------------------------------------------------------- 1 | twine upload dist/* 2 | 3 | --------------------------------------------------------------------------------