Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justquick/bic
Website for the Baltimore Interfaith Coalition
https://github.com/justquick/bic
Last synced: about 2 months ago
JSON representation
Website for the Baltimore Interfaith Coalition
- Host: GitHub
- URL: https://github.com/justquick/bic
- Owner: justquick
- Created: 2010-05-02T22:19:20.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2010-05-08T00:48:51.000Z (over 14 years ago)
- Last Synced: 2024-10-15T08:45:13.402Z (3 months ago)
- Language: JavaScript
- Homepage: http://baltimoreinterfaithcoaltion.com
- Size: 2.22 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
GETTING SET UP FOR THE FIRST TIME
---------------------------------1. Bootstrap your environment. This only needs to be done once:
./setup/_bootstrap.sh
2. Create a virtual environment (it doesn't need to be named EffervescentCollective,
but name it something you'll remember):mkvirtualenv EffervescentCollective
3. Install the "pip" Python package manager in the new virtual environment:
easy_install pip
4. Upgrade to the latest version of the packages:
./bin/upgrade.sh
5. Link the source directory into the project folder for easier access
ln -s ~/.virtualenvs/EffervescentCollective/src/ externals
WHAT YOU SHOULD DO PERIODICALLY
-------------------------------1. Switch to the correct virtual environment:
workon EffervescentCollective
2. Upgrade to the latest version of the packages:
./bin/upgrade.sh
WHAT YOU SHOULD DO EVERY DAY
----------------------------1. Upgrade to the latest code:
git pull
2. Switch to the correct virtual environment:
workon EffervescentCollective
3. Start your local development server:
python manage.py runserver 0.0.0.0:8000