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 gotositepip3 install virtualenvvirtualenv -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 initgit submodule updatepip3 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 migratepython3 manage.py loaddata sample_data/sample_data_1.jsonpython3 manage.py runserver
Dependencies: docker, docker-compose
git clone https://github.com/goto-ru/gotosite/cd gotositegit submodule initgit submodule updatedocker-compose up -d –-builddocker-compose exec web python3 manage.py loaddata sample_data/sample_data_1.jsonService will become available at 0.0.0.0:8001- (Optionally) for CI you can set up https://github.com/Omrigan/flask-github-ci