A new version of GoTo’s website. Kind of a tailored CRM, based on Django.
Dependencies: python3, postgres
git clone https://github.com/goto-ru/gotosite/
cd gotosite
pip3 install virtualenv
virtualenv -p python3.5 env
- You need to run following command every time you start terminal and operate with local project
source env/bin/activate
git submodule init
git submodule update
pip3 install -r requirements.txt
- Here you need to run docker with postgres (
sudo docker run -p 5432:5432 postgres
) Don’t forget to run docker in background. python3 manage.py migrate
python3 manage.py loaddata sample_data/sample_data_1.json
python3 manage.py runserver
Dependencies: docker, docker-compose
git clone https://github.com/goto-ru/gotosite/
cd gotosite
git submodule init
git submodule update
docker-compose up -d –-build
docker-compose exec web python3 manage.py loaddata sample_data/sample_data_1.json
Service will become available at 0.0.0.0:8001- (Optionally) for CI you can set up https://github.com/Omrigan/flask-github-ci