Skip to content

Commit

Permalink
Update readme and gitmodules links (#771)
Browse files Browse the repository at this point in the history
  • Loading branch information
ketankartoza authored Jan 31, 2025
1 parent 1294369 commit be83cce
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
7 changes: 5 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
url = https://github.com/kartoza/gwml2.git
[submodule "geonode"]
path = geonode
url = [email protected]:kartoza/geonode.git
url = https://github.com/kartoza/geonode.git
# url = [email protected]:kartoza/geonode.git
branch = 4.1.1.igrac
[submodule "istsos2"]
path = istsos2
url = [email protected]:meomancer/istsos2.git
url = https://github.com/meomancer/istsos2.git
# url = [email protected]:meomancer/istsos2.git
branch = igrac

9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@

```
git clone https://github.com/kartoza/IGRAC-GGIS.git
cd IGRAC-GGIS/deployment
make build
make up
make collectstatic
cd IGRAC-GGIS
git submodule init
git submodule update
cd deployment
make deploy
```

The web will be available at `http://localhost/`
Expand Down
4 changes: 2 additions & 2 deletions deployment/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ collectstatic:
#We need to run collect static in the same context as the running
# django container it seems so I use docker exec here
# no -it flag so we can run over remote shell
@docker exec $(PROJECT_ID)_django_1 python manage.py collectstatic --noinput
@docker exec $(PROJECT_ID)-django-1 python manage.py collectstatic --noinput

versioning:
@echo
Expand All @@ -146,7 +146,7 @@ reload:
@echo "Reload django project in production mode"
@echo "------------------------------------------------------------------"
# no -it flag so we can run over remote shell
@docker exec $(PROJECT_ID)_django_1 django --reload /tmp/django.pid
@docker exec $(PROJECT_ID)-django-1 django --reload /tmp/django.pid

migrate:
@echo
Expand Down

0 comments on commit be83cce

Please sign in to comment.