{"id":13421766,"url":"https://github.com/imwilsonxu/fbone","last_synced_at":"2026-03-12T12:36:31.750Z","repository":{"id":5093370,"uuid":"6256036","full_name":"imwilsonxu/fbone","owner":"imwilsonxu","description":"Fbone (Flask bone) is a Flask (Python microframework) starter/template/bootstrap/boilerplate application.","archived":false,"fork":false,"pushed_at":"2022-05-17T16:02:20.000Z","size":612,"stargazers_count":1716,"open_issues_count":25,"forks_count":258,"subscribers_count":70,"default_branch":"master","last_synced_at":"2024-10-27T22:28:02.430Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"samalba/dockerclient","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/imwilsonxu.png","metadata":{"files":{"readme":"README.markdown","changelog":"CHANGES","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":"2012-10-17T04:23:32.000Z","updated_at":"2024-10-15T04:14:42.000Z","dependencies_parsed_at":"2022-07-04T18:00:50.046Z","dependency_job_id":null,"html_url":"https://github.com/imwilsonxu/fbone","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imwilsonxu%2Ffbone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imwilsonxu%2Ffbone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imwilsonxu%2Ffbone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imwilsonxu%2Ffbone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/imwilsonxu","download_url":"https://codeload.github.com/imwilsonxu/fbone/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243718996,"owners_count":20336591,"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":[],"created_at":"2024-07-30T23:00:29.704Z","updated_at":"2025-12-16T19:33:09.946Z","avatar_url":"https://github.com/imwilsonxu.png","language":"Python","readme":"# INTRODUCTION\n\nFbone (Flask bone) is a [Flask](http://flask.pocoo.org) (Python microframework) template/bootstrap/boilerplate application, with best practices (I hope).\n\nYou can use it for\n\n- learning Flask.\n- kicking off your new project.\n\n## COMPONENTS\n\n### Frontend\n\n- [HTML5 Boilerplate](https://github.com/h5bp/html5-boilerplate)\n- [jQuery](http://jquery.com/)\n- [Twitter Bootstrap](https://github.com/twitter/bootstrap)\n- [Jinja2](http://jinja.pocoo.org/docs/dev/)\n\n### Flask Extensions\n\n- [SQLAlchemy](http://www.sqlalchemy.org) and [Flask-SQLAlchemy](http://flask-sqlalchemy.pocoo.org)\n- [WTForms](http://wtforms.readthedocs.io) and [Flask-WTF](https://flask-wtf.readthedocs.io).\n- [Flask-Login](https://flask-login.readthedocs.io)\n- [Flask-Testing](https://pythonhosted.org/Flask-Testing/)\n- [Flask-RESTful](http://flask-restful-cn.readthedocs.io/)\n\n### Others\n\n- Modular Applications with Blueprints.\n- Use [Sentry](https://getsentry.com) for real-time crash reporting.\n- Automated managament via [fabric](http://flask.pocoo.org/docs/patterns/fabric/)\n\n## USAGE\n\nPre-required Setup:\n\n- MacOS/Ubuntu (should be fine in other linux distro)\n- git\n- Python / pip / Fabric\n- sqlite / MySQL\n- Apache + mod\\_wsgi\n\n    git clone https://github.com/imwilsonxu/fbone.git fbone\n\n    fab setup_python_macos\n    fab bootstrap\n    fab test\n    fab debug\n\n## STRUCTURE\n\n    ├── CHANGES                     Change logs\n    ├── README.markdown\n    ├── fabfile.py                  Fabric file to automated managament project\n    ├── fbone.conf                  Apache config\n    ├── requirements.txt            3rd libraries\n    ├── tests.py                    Unittests\n    ├── wsgi.py                     Wsgi app\n    ├── fbone\n       ├── __init__.py\n       ├── app.py                   Main App\n       ├── config.py                Develop / Testing configs\n       ├── constants.py             Constants\n       ├── decorators.py            Customized decorators\n       ├── extensions.py            Flask extensions\n       ├── filters.py               Flask filters\n       ├── utils.py                 Python utils\n       ├── frontend                 Frontend blueprint\n       │   ├── __init__.py\n       │   ├── forms.py             Forms used in frontend modular\n       │   ├── views.py             Views used in frontend modular\n       ├── user\n       ├── api\n       ├── static                   Static files\n       │   ├── css\n       │   ├── favicon.png\n       │   ├── humans.txt\n       │   ├── img\n       │   ├── js\n       │   └── robots.txt\n       └── templates                Jinja2 templates\n           ├── errors\n           ├── frontend\n           ├── index.html\n           ├── layouts              Jinja2 layouts\n           │   ├── base.html\n           │   └── user.html\n           ├── macros               Jinja2 macros\n           ├── mails                Mail templates\n           └── user\n\n## TODO\n\n- Upgrade to [Python3k](https://www.python.org/download/releases/3.0/).\n- User [Celery](http://celeryprojet.org), distributed task queue.\n- User [Elastic Search](https://github.com/elastic/elasticsearch), Open Source, Distributed, RESTful Search Engine.\n- Use [PostgreSQL](https://www.postgresql.org).\n- Use [GeeTest](http://www.geetest.com), a popular CAPTCHA service in China.\n\n## LICENSE\n\n[MIT LICENSE](http://www.tldrlegal.com/license/mit-license)\n\n## ACKNOWLEDGEMENTS\n\nMany thanks to Python, Flask and other good stacks.\n\n\n[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/imwilsonxu/fbone/trend.png)](https://bitdeli.com/free \"Bitdeli Badge\")\n","funding_links":[],"categories":["Boilerplate","Python","介绍","Uncategorized"],"sub_categories":["Uncategorized"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimwilsonxu%2Ffbone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimwilsonxu%2Ffbone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimwilsonxu%2Ffbone/lists"}