Instructions are for Mac OS
- Install Homebrew and install Postgress
- Run command:
brew install postgresql
- Run command:
- Install python 2.7 and pip
- Access the directory of where you would like the repo to live
- Run command: git clone ...
- Postgresql database set-up:
- Start the database:
brew services start postgresql
- Type all commands in taworks/setup.txt
- Start the database:
- Install the required python packages for this application
pip install -r requirements.txt
- Make migrations
- Enter
python manage.py makemigrations
- Enter
python manage.py migrate
- Enter
- Run static files
- Enter
python manage.py collectstatic
- Enter
- Run the app!
- Enter
python manage.py runserver
- Enter