forked from benadida/helios-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgraded packages, made things work again, though some tests still fa…
…iling because of asynchronous execution
- Loading branch information
Showing
3 changed files
with
84 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
* install XCode | ||
|
||
* in the preferences, downloads, install Command Line Tools | ||
|
||
* install homebrew | ||
|
||
* install python | ||
|
||
``` | ||
brew install python | ||
``` | ||
|
||
* clean up some things | ||
|
||
``` | ||
pip install pip --upgrade | ||
# yes this is necessary | ||
pip uninstall setuptools | ||
pip install setuptools | ||
``` | ||
|
||
* install PostgreSQL latest | ||
|
||
``` | ||
brew install --no-tcl postgresql | ||
``` | ||
|
||
* install virtualenv | ||
|
||
``` | ||
pip install virtualenv | ||
``` | ||
|
||
* download helios-server | ||
|
||
``` | ||
git clone [email protected]:benadida/helios-server | ||
``` | ||
|
||
* cd into the helios-server directory | ||
|
||
* create a virtualenv: | ||
|
||
``` | ||
virtualenv venv | ||
``` | ||
|
||
* activate virtual environment | ||
|
||
``` | ||
source venv/bin/activate | ||
```` | ||
* install requirements | ||
``` | ||
pip install -r requirements.txt | ||
``` | ||
* reset database | ||
``` | ||
./reset.sh | ||
``` | ||
* start server | ||
``` | ||
python manage.py runserver | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters