Update repo url

This commit is contained in:
Aarni Halinen
2019-05-23 19:07:33 +03:00
parent a88bb30b62
commit 709a637ae2
+4 -4
View File
@@ -26,8 +26,8 @@ Shows the current coffee scale status.
Set up your SSH key authentication in GitLab Profile Settings. Then clone the repository and checkout the development branch: Set up your SSH key authentication in GitLab Profile Settings. Then clone the repository and checkout the development branch:
``` ```bash
git clone git@git.sahkoinsinoorikilta.fi:vtmk/web2.0.git git clone git@gitlab.com:sahkoinsinoorikilta/vtmk/web2.0-backend.git
cd web2.0 cd web2.0
git checkout develop git checkout develop
cp scripts/git/pre-push .git/hooks/pre-push # install a script to test code before committing cp scripts/git/pre-push .git/hooks/pre-push # install a script to test code before committing
@@ -45,7 +45,7 @@ See [Linux/Mac install instructions](./linux_install.md)
Run the following `manage.py` commands. Do not run these in production without thinking! Run the following `manage.py` commands. Do not run these in production without thinking!
``` ```bash
python manage.py createdefaultadmin # creates an admin user python manage.py createdefaultadmin # creates an admin user
python manage.py initialize # creates user groups python manage.py initialize # creates user groups
python manage.py createdummydata # creates dummy members to the member register python manage.py createdummydata # creates dummy members to the member register
@@ -55,7 +55,7 @@ python manage.py createdummydata # creates dummy members to the member regis
### Use runserver command ### Use runserver command
``` ```bash
python manage.py runserver 0.0.0.0:8000 python manage.py runserver 0.0.0.0:8000
``` ```