BowCal is the archery tournament diary designed for archers. Search for tournaments which suit you, see which of your friends are going, keep track of shoots you're thinking about.
You will need:
- A Unix based system (linux, osx)
- Python 3.4
- PostgreSQL
- Git
Instructions:
- Clone the repository
git clone [email protected]:mjtamlyn/squads.git
- Create a virtual environment
virtualenv bowcal
- Install the requirements
pip install -r requirements.txt
- Create a database
psql -c "CREATE DATABASE bowcal"
- Migrate the database
python manage.py migrate
- Create a superuser account
python manage.py createsuperuser
- Run the server
python manage.py runserver