https://github.com/justquick/effervescent-collective
Source code for the new Effervescent Collective dance company website
https://github.com/justquick/effervescent-collective
Last synced: 2 months ago
JSON representation
Source code for the new Effervescent Collective dance company website
- Host: GitHub
- URL: https://github.com/justquick/effervescent-collective
- Owner: justquick
- Created: 2010-01-29T17:23:47.000Z (over 16 years ago)
- Default Branch: master
- Last Pushed: 2010-07-06T14:04:25.000Z (almost 16 years ago)
- Last Synced: 2025-01-28T02:12:37.478Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://effervescentcollective.org
- Size: 2.06 MB
- Stars: 3
- Watchers: 2
- 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