Skip to content

Commit ff3d721

Browse files
author
afabiani
committed
- Updating .dev container
1 parent 8c6d026 commit ff3d721

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

.devcontainer/.env

+3-3
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ RESOLVER=127.0.0.11
8181
# #################
8282
# geoserver
8383
# #################
84-
GEOSERVER_WEB_UI_LOCATION=http://localhost/geoserver/
85-
GEOSERVER_PUBLIC_LOCATION=http://localhost/geoserver/
84+
GEOSERVER_WEB_UI_LOCATION=http://localhost:8080/geoserver/
85+
GEOSERVER_PUBLIC_LOCATION=http://localhost:8080/geoserver/
8686
GEOSERVER_LOCATION=http://geoserver:8080/geoserver/
8787
GEOSERVER_ADMIN_USER=admin
8888
GEOSERVER_ADMIN_PASSWORD=geoserver
@@ -183,7 +183,7 @@ BING_API_KEY=
183183
GOOGLE_API_KEY=
184184

185185
# Monitoring
186-
MONITORING_ENABLED=True
186+
MONITORING_ENABLED=False
187187
MONITORING_DATA_TTL=365
188188
USER_ANALYTICS_ENABLED=True
189189
USER_ANALYTICS_GZIP=True

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ pip-log.txt
77
MANIFEST
88
dist
99
.idea/
10-
.vscode/
1110
.pytest_cache/
1211
pip-wheel-metadata/
1312
# supporting stuff pulled in by paver script

.vscode/launch.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Python: Django",
6+
"type": "python",
7+
"request": "launch",
8+
"program": "./manage.py",
9+
"args": [
10+
"runserver",
11+
"0.0.0.0:8000"
12+
],
13+
"django": true,
14+
"justMyCode": false,
15+
"envFile": "${workspaceFolder}/.devcontainer/.env",
16+
"cwd": "${workspaceFolder}"
17+
}
18+
]
19+
}

paver.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
. $HOME/.override_env
2+
/usr/local/bin/paver $@

0 commit comments

Comments
 (0)