Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/corydolphin/boilerflask
A boilerplate Flask application creatively named BoilerFlask. This base reduces the amount of code I need to write from scratch.
https://github.com/corydolphin/boilerflask
Last synced: 19 days ago
JSON representation
A boilerplate Flask application creatively named BoilerFlask. This base reduces the amount of code I need to write from scratch.
- Host: GitHub
- URL: https://github.com/corydolphin/boilerflask
- Owner: corydolphin
- Created: 2012-11-24T04:48:24.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-24T02:02:17.000Z (over 10 years ago)
- Last Synced: 2023-03-23T11:43:37.509Z (almost 2 years ago)
- Language: CSS
- Size: 215 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
BoilerFlask
============A simple boilerplate Flask application. This base reduces the amount of code I need to write from scratch.
Instructions
------------First, you'll need to clone the repo.
Second, download `pip` and `virtualenv`
$ sudo easy_install pip
$ sudo pip install virtualenvOptionally, install `foreman` and `heroku` Ruby Gems
$ sudo gem install foreman heroku
Optionally, you can setup an isolated environment with `virtualenv`.
$ virtualenv --no-site-packages env
$ source env/bin/activateOn ubuntu, you may need to install python-dev:
$sudo apt-get install python-devNext, install the requirements in your isolated python environment.
$ pip install -r requirements.txt
Now, you can run the application locally.
$ python run.py
You can also run it using the production server if you install `libevent-dev` and `foreman`, but I am leaving that for another day, it also is difficult in Windows
$ foreman start