https://github.com/corydolphin/boilerflask-facebook
Flask boilerplate facebook
https://github.com/corydolphin/boilerflask-facebook
Last synced: 3 months ago
JSON representation
Flask boilerplate facebook
- Host: GitHub
- URL: https://github.com/corydolphin/boilerflask-facebook
- Owner: corydolphin
- Created: 2013-04-18T13:11:02.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-04-29T19:22:57.000Z (about 12 years ago)
- Last Synced: 2025-01-30T18:17:53.258Z (5 months ago)
- Language: Python
- Size: 211 KB
- Stars: 3
- 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