File tree 2 files changed +6
-13
lines changed
2 files changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ RUN chmod +x /usr/bin/celery-commands
22
22
COPY celery-cmd /usr/bin/celery-cmd
23
23
RUN chmod +x /usr/bin/celery-cmd
24
24
25
- # Install "geonode-contribs" apps
26
- RUN cd /usr/src; git clone https://github.com/GeoNode/geonode-contribs.git -b master
27
- # Install logstash and centralized dashboard dependencies
28
- RUN cd /usr/src/geonode-contribs/ldap; pip install --upgrade -e .
25
+ # # Install "geonode-contribs" apps
26
+ # RUN cd /usr/src; git clone https://github.com/GeoNode/geonode-contribs.git -b master
27
+ # # Install logstash and centralized dashboard dependencies
28
+ # RUN cd /usr/src/geonode-contribs/ldap; pip install --upgrade -e .
29
29
30
30
RUN yes w | pip install --src /usr/src -r requirements.txt &&\
31
31
yes w | pip install -e .
Original file line number Diff line number Diff line change 447
447
# 'django_admin_bootstrapped.bootstrap3',
448
448
# 'django_admin_bootstrapped',
449
449
# Apps bundled with Django
450
+ "importer_datapackage" ,
450
451
"modeltranslation" ,
451
452
"dal" ,
452
453
"dal_select2" ,
@@ -2331,6 +2332,7 @@ def get_geonode_catalogue_service():
2331
2332
os .getenv (
2332
2333
"IMPORTER_HANDLERS" ,
2333
2334
"[\
2335
+ 'importer_datapackage.handlers.datapackage.handler.DataPackageFileHandler',\
2334
2336
'importer.handlers.gpkg.handler.GPKGFileHandler',\
2335
2337
'importer.handlers.geojson.handler.GeoJsonFileHandler',\
2336
2338
'importer.handlers.shapefile.handler.ShapeFileHandler',\
@@ -2364,12 +2366,3 @@ def get_geonode_catalogue_service():
2364
2366
AUTO_ASSIGN_REGISTERED_MEMBERS_TO_CONTRIBUTORS = ast .literal_eval (
2365
2367
os .getenv ("AUTO_ASSIGN_REGISTERED_MEMBERS_TO_CONTRIBUTORS" , "True" )
2366
2368
)
2367
-
2368
- IMPORTER_HANDLERS = (
2369
- "importer_datapackage.handlers.datapackage.handler.DataPackageFileHandler" ,
2370
- * IMPORTER_HANDLERS ,
2371
- )
2372
-
2373
- INSTALLED_APPS += (
2374
- "importer_datapackage" ,
2375
- )
You can’t perform that action at this time.
0 commit comments