├── .gitignore ├── README.md ├── img └── flask-developer-roadmap.png ├── template-flask-blueprint-with-factory └── flask │ ├── app │ ├── __init__.py │ ├── config │ │ └── config.py │ └── view │ │ └── auth.py │ ├── main.py │ └── requirements.txt ├── template-flask-factory-Application └── flask │ ├── app │ ├── __init__.py │ └── config │ │ └── config.py │ ├── main.py │ └── requirements.txt ├── template-flask-i18n └── flask │ ├── app │ ├── __init__.py │ ├── babel.cfg │ ├── config │ │ └── config.py │ ├── templates │ │ └── index.html │ ├── translations │ │ └── zh │ │ │ └── LC_MESSAGES │ │ │ └── messages.po │ └── view │ │ └── index.py │ ├── main.py │ └── requirements.txt ├── template-flask-jwt ├── app │ ├── __init__.py │ ├── config │ │ └── config.py │ ├── model │ │ └── users.py │ ├── templates │ │ └── index.html │ └── view │ │ └── v1 │ │ ├── __init__.py │ │ └── auth.py ├── main.py └── requirements.txt ├── template-flask-login ├── app │ ├── __init__.py │ ├── config │ │ ├── config.py │ │ └── test.db │ ├── model │ │ └── user.py │ ├── templates │ │ ├── login.html │ │ └── signup.html │ └── view │ │ ├── abort_msg.py │ │ └── auth.py ├── main.py └── requirements.txt ├── template-flask-sqlalchemy ├── hash_tag.py ├── hashtag.db ├── main.py ├── n1.db ├── n1_queries.py └── requirements.txt ├── template1-dockerfile-flask ├── Dockerfile ├── README.md ├── main.py └── requirements.txt ├── template2-dockerfile-nginx ├── Dockerfile ├── README.md ├── index.html ├── nginx.conf ├── ssl.conf ├── ssl.csr └── ssl.key └── template3-docker-compose-flask-nginx-postgres ├── docker-compose.yml ├── flask ├── Dockerfile ├── app.ini ├── app │ ├── __init__.py │ ├── config │ │ └── config.py │ └── models │ │ └── users.py ├── main.py └── requirements.txt └── nginx ├── Dockerfile ├── nginx.conf ├── ssl.csr └── ssl.key /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/README.md -------------------------------------------------------------------------------- /img/flask-developer-roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/img/flask-developer-roadmap.png -------------------------------------------------------------------------------- /template-flask-blueprint-with-factory/flask/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-blueprint-with-factory/flask/app/__init__.py -------------------------------------------------------------------------------- /template-flask-blueprint-with-factory/flask/app/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-blueprint-with-factory/flask/app/config/config.py -------------------------------------------------------------------------------- /template-flask-blueprint-with-factory/flask/app/view/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-blueprint-with-factory/flask/app/view/auth.py -------------------------------------------------------------------------------- /template-flask-blueprint-with-factory/flask/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-blueprint-with-factory/flask/main.py -------------------------------------------------------------------------------- /template-flask-blueprint-with-factory/flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-blueprint-with-factory/flask/requirements.txt -------------------------------------------------------------------------------- /template-flask-factory-Application/flask/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-factory-Application/flask/app/__init__.py -------------------------------------------------------------------------------- /template-flask-factory-Application/flask/app/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-factory-Application/flask/app/config/config.py -------------------------------------------------------------------------------- /template-flask-factory-Application/flask/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-factory-Application/flask/main.py -------------------------------------------------------------------------------- /template-flask-factory-Application/flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-factory-Application/flask/requirements.txt -------------------------------------------------------------------------------- /template-flask-i18n/flask/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-i18n/flask/app/__init__.py -------------------------------------------------------------------------------- /template-flask-i18n/flask/app/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-i18n/flask/app/babel.cfg -------------------------------------------------------------------------------- /template-flask-i18n/flask/app/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-i18n/flask/app/config/config.py -------------------------------------------------------------------------------- /template-flask-i18n/flask/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-i18n/flask/app/templates/index.html -------------------------------------------------------------------------------- /template-flask-i18n/flask/app/translations/zh/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-i18n/flask/app/translations/zh/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /template-flask-i18n/flask/app/view/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-i18n/flask/app/view/index.py -------------------------------------------------------------------------------- /template-flask-i18n/flask/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-i18n/flask/main.py -------------------------------------------------------------------------------- /template-flask-i18n/flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-i18n/flask/requirements.txt -------------------------------------------------------------------------------- /template-flask-jwt/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-jwt/app/__init__.py -------------------------------------------------------------------------------- /template-flask-jwt/app/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-jwt/app/config/config.py -------------------------------------------------------------------------------- /template-flask-jwt/app/model/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-jwt/app/model/users.py -------------------------------------------------------------------------------- /template-flask-jwt/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-jwt/app/templates/index.html -------------------------------------------------------------------------------- /template-flask-jwt/app/view/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-jwt/app/view/v1/__init__.py -------------------------------------------------------------------------------- /template-flask-jwt/app/view/v1/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-jwt/app/view/v1/auth.py -------------------------------------------------------------------------------- /template-flask-jwt/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-jwt/main.py -------------------------------------------------------------------------------- /template-flask-jwt/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-jwt/requirements.txt -------------------------------------------------------------------------------- /template-flask-login/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-login/app/__init__.py -------------------------------------------------------------------------------- /template-flask-login/app/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-login/app/config/config.py -------------------------------------------------------------------------------- /template-flask-login/app/config/test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-login/app/config/test.db -------------------------------------------------------------------------------- /template-flask-login/app/model/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-login/app/model/user.py -------------------------------------------------------------------------------- /template-flask-login/app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-login/app/templates/login.html -------------------------------------------------------------------------------- /template-flask-login/app/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-login/app/templates/signup.html -------------------------------------------------------------------------------- /template-flask-login/app/view/abort_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-login/app/view/abort_msg.py -------------------------------------------------------------------------------- /template-flask-login/app/view/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-login/app/view/auth.py -------------------------------------------------------------------------------- /template-flask-login/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-login/main.py -------------------------------------------------------------------------------- /template-flask-login/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-login/requirements.txt -------------------------------------------------------------------------------- /template-flask-sqlalchemy/hash_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-sqlalchemy/hash_tag.py -------------------------------------------------------------------------------- /template-flask-sqlalchemy/hashtag.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-sqlalchemy/hashtag.db -------------------------------------------------------------------------------- /template-flask-sqlalchemy/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-sqlalchemy/main.py -------------------------------------------------------------------------------- /template-flask-sqlalchemy/n1.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-sqlalchemy/n1.db -------------------------------------------------------------------------------- /template-flask-sqlalchemy/n1_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-sqlalchemy/n1_queries.py -------------------------------------------------------------------------------- /template-flask-sqlalchemy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template-flask-sqlalchemy/requirements.txt -------------------------------------------------------------------------------- /template1-dockerfile-flask/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template1-dockerfile-flask/Dockerfile -------------------------------------------------------------------------------- /template1-dockerfile-flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template1-dockerfile-flask/README.md -------------------------------------------------------------------------------- /template1-dockerfile-flask/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template1-dockerfile-flask/main.py -------------------------------------------------------------------------------- /template1-dockerfile-flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template1-dockerfile-flask/requirements.txt -------------------------------------------------------------------------------- /template2-dockerfile-nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template2-dockerfile-nginx/Dockerfile -------------------------------------------------------------------------------- /template2-dockerfile-nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template2-dockerfile-nginx/README.md -------------------------------------------------------------------------------- /template2-dockerfile-nginx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template2-dockerfile-nginx/index.html -------------------------------------------------------------------------------- /template2-dockerfile-nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template2-dockerfile-nginx/nginx.conf -------------------------------------------------------------------------------- /template2-dockerfile-nginx/ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template2-dockerfile-nginx/ssl.conf -------------------------------------------------------------------------------- /template2-dockerfile-nginx/ssl.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template2-dockerfile-nginx/ssl.csr -------------------------------------------------------------------------------- /template2-dockerfile-nginx/ssl.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template2-dockerfile-nginx/ssl.key -------------------------------------------------------------------------------- /template3-docker-compose-flask-nginx-postgres/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template3-docker-compose-flask-nginx-postgres/docker-compose.yml -------------------------------------------------------------------------------- /template3-docker-compose-flask-nginx-postgres/flask/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template3-docker-compose-flask-nginx-postgres/flask/Dockerfile -------------------------------------------------------------------------------- /template3-docker-compose-flask-nginx-postgres/flask/app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template3-docker-compose-flask-nginx-postgres/flask/app.ini -------------------------------------------------------------------------------- /template3-docker-compose-flask-nginx-postgres/flask/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template3-docker-compose-flask-nginx-postgres/flask/app/__init__.py -------------------------------------------------------------------------------- /template3-docker-compose-flask-nginx-postgres/flask/app/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template3-docker-compose-flask-nginx-postgres/flask/app/config/config.py -------------------------------------------------------------------------------- /template3-docker-compose-flask-nginx-postgres/flask/app/models/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template3-docker-compose-flask-nginx-postgres/flask/app/models/users.py -------------------------------------------------------------------------------- /template3-docker-compose-flask-nginx-postgres/flask/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template3-docker-compose-flask-nginx-postgres/flask/main.py -------------------------------------------------------------------------------- /template3-docker-compose-flask-nginx-postgres/flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template3-docker-compose-flask-nginx-postgres/flask/requirements.txt -------------------------------------------------------------------------------- /template3-docker-compose-flask-nginx-postgres/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template3-docker-compose-flask-nginx-postgres/nginx/Dockerfile -------------------------------------------------------------------------------- /template3-docker-compose-flask-nginx-postgres/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template3-docker-compose-flask-nginx-postgres/nginx/nginx.conf -------------------------------------------------------------------------------- /template3-docker-compose-flask-nginx-postgres/nginx/ssl.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template3-docker-compose-flask-nginx-postgres/nginx/ssl.csr -------------------------------------------------------------------------------- /template3-docker-compose-flask-nginx-postgres/nginx/ssl.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hsuanchi/flask-template/HEAD/template3-docker-compose-flask-nginx-postgres/nginx/ssl.key --------------------------------------------------------------------------------