{"id":17246596,"url":"https://github.com/andreid/flask-easy-template","last_synced_at":"2025-06-12T08:36:32.161Z","repository":{"id":20299691,"uuid":"23573403","full_name":"AndreiD/Flask-Easy-Template","owner":"AndreiD","description":"A template web app with Flask. Features: latest bootstrap, user registry, login, forgot password. Secured admin panel, pagination, config files for Nginx and Supervisor and much more.","archived":false,"fork":false,"pushed_at":"2019-12-18T14:23:03.000Z","size":3506,"stargazers_count":177,"open_issues_count":4,"forks_count":74,"subscribers_count":18,"default_branch":"master","last_synced_at":"2025-04-07T22:22:24.541Z","etag":null,"topics":["flask","python","supervisor","tornado","web-python"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AndreiD.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-09-02T09:50:48.000Z","updated_at":"2025-03-27T14:55:16.000Z","dependencies_parsed_at":"2022-08-04T17:15:28.185Z","dependency_job_id":null,"html_url":"https://github.com/AndreiD/Flask-Easy-Template","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AndreiD/Flask-Easy-Template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreiD%2FFlask-Easy-Template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreiD%2FFlask-Easy-Template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreiD%2FFlask-Easy-Template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreiD%2FFlask-Easy-Template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndreiD","download_url":"https://codeload.github.com/AndreiD/Flask-Easy-Template/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreiD%2FFlask-Easy-Template/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259430887,"owners_count":22856369,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flask","python","supervisor","tornado","web-python"],"created_at":"2024-10-15T06:34:34.527Z","updated_at":"2025-06-12T08:36:32.122Z","avatar_url":"https://github.com/AndreiD.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"Flask Easy-Template\n========================\n\n## Sadly, I don't have time to maintain this. If you'd like to be a maintainer, drop me a message in an issue !!\n\n#### Save time on your initial setup. This is a template app that includes the most important things you'll be probably using for your flask projects.\n\n\nYou can change the theme just by replacing one word in ***base.html*** \n\n\n### Features:\n\n- Latest bootstrap template, modernizer, jquery etc. latest, served from content delivery networks.\n- User Registry, Login \u0026 Forgot Password\n- Email integration with SendGrid \u0026 a contact form with recaptcha\n- A sample tasks database with SQLALchemy with Pagination\n\n\n#### How to use it:\n\n- `git clone https://github.com/AndreiD/Flask-Easy-Template.git \u003cproject_name\u003e` or download the zip\n- `pip install -r requirements.txt`\n- `python run.py` -\u003e http://server_ip:5000\n\n##### Things to do after:\n\n- check the `config.py`\n- in **run.py** edit the port of the app (Default: 5000)\n\n\nFor templates edit `/app/templates/base.html`\n\n\u003e \u003c!DOCTYPE html\u003e\n\u003e {% set bootstrap_version = '3.3.4' %}\n\u003e {% set jquery_version = '2.1.3' %}\n\u003e {% set modernizer_version = '2.8.3' %}\n\u003e {% set bootswatch_version = '3.3.2' %}\n\u003e {% set bootswatch_theme = 'slate' %}\n\n\nIn case you don't like the \"slate\" theme, you can chose a nice theme from http://bootswatch.com/ and just replace the theme name\n\nStep 2. ???\nStep 3. PROFIT\n\n#### About Stars\n\nStarring a repository allows you to keep track of projects that you find interesting, even if you aren't associated with the project.\n\nWhen you star a repository, you're actually performing two distinct actions:\n\nCreating a bookmark for easier access\n**Showing appreciation to the repository maintainer for their work**\n\n##### Extras for you:\n\n- a supervisord.conf [supervisor is used to monitor the web application and restart it, also starts the app in case you restart your server]\n- a simple nginx.conf\n- after you go into production, uncomment the settings from run.py for the best performance\n\nYour Feedback is appreciated :)\n\n##### TROUBLESHOOTS FOR BEGINNERS :\n\n    - READ FIRST : About Python 2 and 3 compatibility\n    Some scripts and modules versions required here are written in python 2 and not ready yet for python 3 , \n    so it is recommended to download and install both interpreters python 2 and also python 3 (for windows users don't forget to add their folder paths also in your environment variables)\n    Then when calling python scripts in version 2 or 3 anyway (example with the package manager script PIP), you can run default python command like :\n        \"python -m pip install ...\" or \"pip install ...\"\n    To call only python 3 scripts choose  this  instead :\n        \"py -m pip install ...\" or \"pip3 install ...\"\n\n\n    - Error parsing in requirements.txt ?\n        Run instead this compatible formatted file :\n            python -m pip install -r requirements-pip2.txt    \n        or convert first your requirements.txt to a python 2 pip2 compatible format with this command :\n            python -m pip list --format=freeze \u003e requirements.txt\n\n\n    - Error install on Proxytype : SyntaxError like Missing parentheses in call to 'print' ?\n        the print function requires parentheses in Python 3 but not in Python 2 which means that the extension that you are trying to install is not yet compatible with python 3\n        This is why it is recommended to install python 3 and python 2 by default.\n        So run instead this compatible command for python 2 extensions (after installing python 2 if not got it yet) :\n            python -m pip install -r requirements-pip2.txt\n            or python -m pip install ...\n\n\n    - Error install module Pycrypto : microsoft visual c++ compiler for python 2.7  is required ?\n        download and install microsoft visual c++ compiler for python 2.7 here : https://www.microsoft.com/en-us/download/details.aspx?id=44266\n\n\n    - Error Tornado module not found ? \n        it is a problem when installing modules like tornado in a multiple python interpreters environment \n        So run instead this common command python which precize by default  the python 2 version \n            python -m pip install -r requirements-pip2.txt\n            or python -m pip install ...\n            or python run.py\n\n\n##### License: Apache 2.0\n\n~~~~\nCopyright 2015 AndroidAdvance.com\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n   http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\n~~~~\nlimitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreid%2Fflask-easy-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandreid%2Fflask-easy-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreid%2Fflask-easy-template/lists"}