Skip to content

52North/workshop-sudanext

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 

Repository files navigation

GeoNode Workshop SudaNext

Slides: https://docs.google.com/presentation/d/1aGJ2nvTk7fVlGOVQva4LpW1nL3w3qIOhXNxLpXBvsRo/edit

Agenda

Start: 9:00 am

Topic
Introduction Participants and expectations
Who are we @ 52°North GmbH
Introduction to
- GeoNode and Remote Services
- Running GeoNode Instances
Hands-On Installation
- What will be installed?
- Installation
Uploading Data
Lunch Break
Hands-On GeoNode
Development Clients/Dashboards
Customizing and Extending GeoNode
Questions and Open Discussion
End of Workshop

Installation of geonode

The following instructions describe how to run GeoNode. Checkout GeoNode:

git clone https://github.com/geonode/geonode

Optional: Open .env file and set COMPOSE_PROJECT_NAME=sudanext which will create containers with labels containing sudanext.

You can either start GeoNode (and its accompanying services) via docker-compose or as devcontainer from VS-Code. The simplest approach would be to run:

# the build will take quite a while
docker compose build .
# start geonode detached
docker compose up -d
# once running you can follow the logs
docker compose logs -f

After build and startup completes you can access

Useful Docker Commands

Stop all containers of the sudanext setup:

# either via docker compose
docker compose down
# or directly via docker
docker stop $(docker ps -a --filter name=sudanext --format={{.Names}})

Remove all volumes of the sudanext setup:

docker volume rm $(docker volume ls --filter="name=sudanext" --format={{.Name}})

Helpful Links

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published