https://github.com/danasilver/middcrushes
We found love in a hopeless place.
https://github.com/danasilver/middcrushes
Last synced: over 1 year ago
JSON representation
We found love in a hopeless place.
- Host: GitHub
- URL: https://github.com/danasilver/middcrushes
- Owner: danasilver
- Created: 2015-12-26T18:05:11.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-28T06:15:51.000Z (over 10 years ago)
- Last Synced: 2025-01-06T00:41:47.908Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 374 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MiddCrushes
## Development
Setup a virtualenv (assumes you have virtualenv and virtualenvwrapper installed):
```sh
$ mkvirtualenv --python /usr/local/bin/python3
```
```sh
pip install -r requirements/dev.txt
```
## Development Database
A PostgreSQL database. On OS X install [Postgres.app](http://postgresapp.com/).
Create a database for development:
```sh
$ createdb middcrushes
```
Run the migrations:
```sh
$ python manage.py migrate
```
## Heroku
Use Heroku Buildpack Multi
```sh
heroku buildpacks:set https://github.com/ddollar/heroku-buildpack-multi.git
```