@@ -4,16 +4,25 @@ GeoNode template project. Generates a django project with GeoNode support.
44
55## Table of Contents
66
7- - [ Quick Docker Start] ( #quick-docker-start )
8- - [ Developer Workshop] ( #developer-workshop )
9- - [ Create a custom project] ( #create-a-custom-project )
10- - [ Start your server using Docker] ( #start-your-server-using-docker )
11- - [ Run the instance in development mode] ( #run-the-instance-in-development-mode )
12- - [ Run the instance on a public site] ( #run-the-instance-on-a-public-site )
13- - [ Stop the Docker Images] ( #stop-the-docker-images )
14- - [ Backup and Restore from Docker Images] ( #backup-and-restore-the-docker-images )
15- - [ Recommended: Track your changes] ( #recommended-track-your-changes )
16- - [ Hints: Configuring ` requirements.txt ` ] ( #hints-configuring-requirementstxt )
7+ - [ {{ project\_ name|title }}] ( #-project_nametitle- )
8+ - [ Table of Contents] ( #table-of-contents )
9+ - [ Quick Docker Start] ( #quick-docker-start )
10+ - [ Developer Workshop] ( #developer-workshop )
11+ - [ Create a custom project] ( #create-a-custom-project )
12+ - [ Start your server using Docker] ( #start-your-server-using-docker )
13+ - [ Run the instance in development mode] ( #run-the-instance-in-development-mode )
14+ - [ Use dedicated docker-compose files while developing] ( #use-dedicated-docker-compose-files-while-developing )
15+ - [ Run the instance on a public site] ( #run-the-instance-on-a-public-site )
16+ - [ Preparation of the image (First time only)] ( #preparation-of-the-image-first-time-only )
17+ - [ Startup the image] ( #startup-the-image )
18+ - [ Stop the Docker Images] ( #stop-the-docker-images )
19+ - [ Fully Wipe-out the Docker Images] ( #fully-wipe-out-the-docker-images )
20+ - [ Backup and Restore from Docker Images] ( #backup-and-restore-from-docker-images )
21+ - [ Run a Backup] ( #run-a-backup )
22+ - [ Run a Restore] ( #run-a-restore )
23+ - [ Recommended: Track your changes] ( #recommended-track-your-changes )
24+ - [ Hints: Configuring ` requirements.txt ` ] ( #hints-configuring-requirementstxt )
25+ - [ Increasing PostgreSQL Max connections] ( #increasing-postgresql-max-connections )
1726
1827## Quick Docker Start
1928
@@ -147,45 +156,6 @@ To setup your project follow these instructions:
147156 }
148157 ` ` `
149158
150- # ## Start your server
151- * Skip this part if you want to run the project using Docker instead* see [Start your server using Docker](# start-your-server-using-docker)
152-
153- 1. Setup the Python Dependencies
154-
155- ** NOTE** : * Important: modify your ` requirements.txt` file, by adding the ` GeoNode` branch before continue! *
156-
157- (see [Hints: Configuring ` requirements.txt` ](# hints-configuring-requirementstxt))
158-
159- ` ` ` bash
160- cd src
161- pip install -r requirements.txt --upgrade
162- pip install -e . --upgrade
163-
164- # Install GDAL Utilities for Python
165- pip install pygdal==" ` gdal-config --version` .*"
166-
167- # Dev scripts
168- mv ../.override_dev_env.sample ../.override_dev_env
169- mv manage_dev.sh.sample manage_dev.sh
170- mv paver_dev.sh.sample paver_dev.sh
171-
172- source ../.override_dev_env
173-
174- # Using the Default Settings
175- sh ./paver_dev.sh reset
176- sh ./paver_dev.sh setup
177- sh ./paver_dev.sh sync
178- sh ./paver_dev.sh start
179- ` ` `
180-
181- 2. Access GeoNode from browser
182-
183- ** NOTE** : default admin user is ` ` admin` ` (with pw: ` ` admin` ` )
184-
185- ` ` ` bash
186- http://localhost:8000/
187- ` ` `
188-
189159# ## Start your server using Docker
190160
191161You need Docker 1.12 or higher, get the latest stable official release for your platform.
0 commit comments