You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Refactor project to be forked directly
* Change order of edtiable packages
* renamed module to geonode_project
* Removed version module
* Migrated to pyproject
* Fixed formatting
* Removed monitoring legacy code
* Updated CodeQL workflow branches
* Rename the container project to project, to clarify it's not geonode itself
`create-envfile.py` accepts the following arguments:
45
-
46
-
-`--https`: Enable SSL. It's disabled by default
47
-
-`--env_type`:
48
-
- When set to `prod``DEBUG` is disabled and the creation of a valid `SSL` is requested to Letsencrypt's ACME server
49
-
- When set to `test``DEBUG` is disabled and a test `SSL` certificate is generated for local testing
50
-
- When set to `dev``DEBUG` is enabled and no `SSL` certificate is generated
51
-
-`--hostname`: The URL that whill serve GeoNode (`localhost` by default)
52
-
-`--email`: The administrator's email. Notice that a real email and a valid SMPT configurations are required if `--env_type` is seto to `prod`. Letsencrypt uses to email for issuing the SSL certificate
53
-
-`--geonodepwd`: GeoNode's administrator password. A random value is set if left empty
54
-
-`--geoserverpwd`: GeoNode's administrator password. A random value is set if left empty
55
-
-`--pgpwd`: PostgreSQL's administrator password. A random value is set if left empty
56
-
-`--dbpwd`: GeoNode DB user role's password. A random value is set if left empty
57
-
-`--geodbpwd`: GeoNode data DB user role's password. A random value is set if left empty
58
-
-`--clientid`: Client id of Geoserver's GeoNode Oauth2 client. A random value is set if left empty
59
-
-`--clientsecret`: Client secret of Geoserver's GeoNode Oauth2 client. A random value is set if left empty
60
-
```bash
61
-
docker compose build
62
-
docker compose up -d
63
-
```
64
-
65
-
## Developer Workshop
66
-
67
-
Available at
68
-
69
-
```bash
70
-
http://geonode.org/dev-workshop
71
-
```
72
-
73
-
## Create a custom project
74
-
75
-
**NOTE**: *You can call your geonode project whatever you like **except 'geonode'**. Follow the naming conventions for python packages (generally lower case with underscores (``_``). In the examples below, replace ``{{ project_name }}`` with whatever you would like to name your project.*
0 commit comments