{"id":13510065,"url":"https://github.com/koddr/bottle-vue-kickstart","last_synced_at":"2025-04-06T16:12:01.505Z","repository":{"id":38420377,"uuid":"85304160","full_name":"koddr/bottle-vue-kickstart","owner":"koddr","description":"🍕 Very basic Bottle kickstart kit with Vue.js and Webpack. Included Axios, Autoprefixer, Babel, Webpack config, demo app with Bulma and Web font loader.","archived":false,"fork":false,"pushed_at":"2025-03-09T12:55:23.000Z","size":1290,"stargazers_count":90,"open_issues_count":0,"forks_count":6,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-30T14:11:15.073Z","etag":null,"topics":["autoprefixer","axios","bottle","bottlepy","bulma","bulma-css-framework","kickstart","kit","pipenv","vue","vuejs","vuejs2","webpack"],"latest_commit_sha":null,"homepage":"https://github.com/koddr/bottle-vue-kickstart","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/koddr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"liberapay":"koddr"}},"created_at":"2017-03-17T11:23:55.000Z","updated_at":"2025-03-09T12:55:21.000Z","dependencies_parsed_at":"2023-02-02T05:17:00.466Z","dependency_job_id":"7db9f4be-9aa2-4122-9bb1-15acde6f9ee1","html_url":"https://github.com/koddr/bottle-vue-kickstart","commit_stats":{"total_commits":197,"total_committers":6,"mean_commits":"32.833333333333336","dds":0.4873096446700508,"last_synced_commit":"8c09f3c142ac54e60b690ca54912bce6a0a8ace7"},"previous_names":["koddr/bottle-vue-kickstart","truewebartisans/bottle-vue-kickstart"],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koddr%2Fbottle-vue-kickstart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koddr%2Fbottle-vue-kickstart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koddr%2Fbottle-vue-kickstart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koddr%2Fbottle-vue-kickstart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/koddr","download_url":"https://codeload.github.com/koddr/bottle-vue-kickstart/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247509224,"owners_count":20950232,"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":["autoprefixer","axios","bottle","bottlepy","bulma","bulma-css-framework","kickstart","kit","pipenv","vue","vuejs","vuejs2","webpack"],"created_at":"2024-08-01T02:01:22.806Z","updated_at":"2025-04-06T16:12:01.479Z","avatar_url":"https://github.com/koddr.png","language":"HTML","funding_links":["https://liberapay.com/koddr","https://paypal.me/koddr?locale.x=en_EN"],"categories":["HTML","webpack"],"sub_categories":[],"readme":"![bottle-vue-kickstart-main](https://cloud.githubusercontent.com/assets/11155743/24041455/9fbd99ec-0b1e-11e7-9ba0-a429a28591b0.jpg)\n\n# Very basic Bottle kickstart kit with Vue.js and Webpack\n\n[![GitHub release](https://img.shields.io/badge/version-0.5.3-brightgreen.svg?style=flat-square)](https://github.com/koddr/bottle-vue-kickstart) [![licence](https://img.shields.io/badge/Python-2.7_or_3.4+-red.svg?style=flat-square)](https://www.python.org/downloads/) [![licence](https://img.shields.io/badge/licence-MIT-blue.svg?style=flat-square)](https://github.com/koddr/bottle-vue-kickstart/blob/master/LICENSE.md)\n\n## What's included to kit?\n\nPython packages:\n\n* Bottle `0.12.16` (stable)\n* SQLAlchemy (with bottle-sqlalchemy) `latest`\n* Jinja2 `latest`\n\nNPM packages:\n\n* Axios `0.18+` (AJAX calls)\n* PostCSS/Autoprefixer `7.2+` (automate CSS prefixes)\n* Babel `7+` (turn ES6 code to vanilla)\n* Vue.js `2.6+` (the basis of reactive web applications)\n* Webpack `3+` with config (SCSS, ES6, Vue.js)\n* Web font loader `1.6+` (async load font from Google Fonts)\n\nCSS, styles:\n\n* [Bulma CSS framework](https://github.com/jgthms/bulma) `latest`\n\n## What's Bottle?\n\n[Bottle](http://bottlepy.org/) is lightweight WSGI micro web-framework for Python. A simple process of installing and deploying. Everything has already been done for you. Just enjoy writing your code!\n\n\u003e Simplify development of reactive web applications — use this kickstart kit now!\n\n## How to install and use kit?\n\nFirst, clone this GitHub repository:\n\n```console\nfoo@bar:~$ git clone https://github.com/koddr/bottle-vue-kickstart.git\n```\n\nSecond, install NPM dependencies and make build:\n\n```console\nfoo@bar:~$ cd bottle-vue-kickstart\nfoo@bar:~$ npm install\nfoo@bar:~$ npm run build # or `npm run watch` for hot-reload\n```\n\nThird, prepare your virtual environment:\n\nSince `0.4.2` we use [Pipenv](https://github.com/pypa/pipenv) project for manage virtual environments. \n\nInstall via `pip` to your system:\n\n```console\nfoo@bar:~$ pip install pipenv\n```\n\n\u003e More info about Pipenv here: [Managing dependencies, Python.org](https://packaging.python.org/tutorials/managing-dependencies/#managing-dependencies).\n\nAnd now, install Bottle with all extensions: \n\n```console\nfoo@bar:~$ pipenv install\n```\n\n\u003e Yes, virtual environment is automaticaly create. If you want to know system link, just use `pipenv --venv`.\n\u003e\n\u003e Result is something like this: `/Users/username/.virtualenvs/bottle-vue-kickstart--XXXXXX`.\n\u003e\n\u003e Use it in JetBrains PyCharm, VS Code or else.\n\nFinally, run development server:\n\n```console\nfoo@bar:~$ python3 run.py\n\n  Bottle v0.12.16 server starting up (using AutoServer())...\n  Listening on http://localhost:8080/\n  Hit Ctrl-C to quit.\n```\n\n### If you did everything right...\n\n![Result without database](https://cloud.githubusercontent.com/assets/11155743/24055182/24a5a04c-0b50-11e7-89a6-8f5d85c98e08.png)\n\n(Optional) Install database with example objects:\n\n```console\nfoo@bar:~$ python3 _devtools/install_init_database.py\n```\n\nNow, your yellow section on http://localhost:8080/ will look like this:\n\n![Result with database](https://cloud.githubusercontent.com/assets/11155743/24043867/cf79c344-0b29-11e7-8066-8ebd83e68acb.png)\n\nAnd we done!\n\n## Final app structure\n\n```console\n├── _devtools\n│   └── install_init_database.py\n├── static\n│   ├── assets\n│   │   ├── js\n│   │   │   └── script.js\n│   │   └── scss\n│   │       └── style.scss\n│   ├── css\n│   │   └── style.min.css\n│   ├── images\n│   │   └── bottle-vue-kickstart-logo-horizontal.svg\n│   └── js\n│       └── script.min.js\n├── templates\n│   ├── index.html\n│   └── layout\n│       └── base.html\n├── .babelrc\n├── .editorconfig\n├── .gitignore\n├── articles.db\n├── package.json\n├── package-lock.json\n├── Pipfile\n├── Pipfile.lock\n├── postcss-config.js\n├── README.md\n├── run.py\n└── webpack.config.js\n```\n\n### What's next? Build something awesome and make web beautiful again!\n\n## Developers\n\n- Idea and active development by [Vic Shóstak](https://github.com/koddr) (aka Koddr).\n\n## Project assistance\n\nIf you want to say «thank you» or/and support active development `Bottle Vue.js Kickstart`:\n\n1. Add a GitHub Star to project.\n2. Twit about project [on your Twitter](https://twitter.com/intent/tweet?text=I%20found%20cool%20starter%20pack%20with%20%23Python%20%40bottlepy%20and%20%23JavaScript%20%40vuejs%20%F0%9F%91%8D%20Also%2C%20include%20configured%3A%20%40webpack%2C%20%23axios%2C%20%40Autoprefixer%20and%20%40babeljs%20%F0%9F%8E%89\u0026url=https%3A%2F%2Fgithub.com%2Fkoddr%2Fbottle-vue-kickstart).\n3. Donate some money to project author via PayPal: [@paypal.me/koddr](https://paypal.me/koddr?locale.x=en_EN).\n4. Join DigitalOcean at our [referral link](https://m.do.co/c/b41859fa9b6e) (your profit is **$100** and we get $25).\n\nThanks for your support! 😘 Together, we make this project better every day.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoddr%2Fbottle-vue-kickstart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkoddr%2Fbottle-vue-kickstart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoddr%2Fbottle-vue-kickstart/lists"}