Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
chiatt committed Aug 2, 2024
1 parent fc3e1fd commit 2364794
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions disco/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
}

INSTALLED_APPS = (
"disco",
"webpack_loader",
"django.contrib.admin",
"django.contrib.auth",
Expand All @@ -125,7 +126,6 @@
"django_celery_results",
"pgtrigger",
# "silk",
"disco",
"arches_templating",
"arches_for_science",
)
Expand Down Expand Up @@ -264,7 +264,7 @@
CLUSTER_DISTANCE_MAX = 5000 #meters
GRAPH_MODEL_CACHE_TIMEOUT = None

OAUTH_CLIENT_ID = 'vrPZJ8h0KIASrNK0IkjXKK8xMBe5G8hRRdE0dQdj'
OAUTH_CLIENT_ID = ''

APP_TITLE = 'Arches | Heritage Data Management'
COPYRIGHT_TEXT = 'All Rights Reserved.'
Expand Down
1 change: 0 additions & 1 deletion disco/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
urlpatterns = [
re_path(r"^", include("arches.urls")),
re_path(r"^", include("arches_for_science.urls")),
# re_path(r"^", include("dashboard.urls")),
path("reports/", include("arches_templating.urls")),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "disco",
"license": "AGPL-3.0-only",
"scripts": {
"build_development": "npm run eslint:check && npm run ts:check && cross-env NODE_OPTIONS=--max-old-space-size=8192 webpack --config ./webpack/webpack.config.dev.js",
"build_production": "npm run eslint:check && npm run ts:check && cross-env NODE_OPTIONS=--max-old-space-size=8192 NODE_ENV=production webpack --config ./webpack/webpack.config.prod.js",
"build_test": "npm run eslint:check && npm run ts:check && cross-env NODE_OPTIONS=--max-old-space-size=8192 webpack --config ./webpack/webpack.config.dev.js --env test=true",
"build_development": "npm run eslint:check && npm run ts:check && cross-env NODE_OPTIONS=--max-old-space-size=2048 webpack --config ./webpack/webpack.config.dev.js",
"build_production": "npm run eslint:check && npm run ts:check && cross-env NODE_OPTIONS=--max-old-space-size=2048 NODE_ENV=production webpack --config ./webpack/webpack.config.prod.js",
"build_test": "npm run eslint:check && npm run ts:check && cross-env NODE_OPTIONS=--max-old-space-size=2048 webpack --config ./webpack/webpack.config.dev.js --env test=true",
"eslint:check": "eslint **/src",
"eslint:fix": "eslint **/src --fix",
"eslint:watch": "nodemon --watch . --ext ts,vue --exec npm run --silent eslint:check",
Expand All @@ -14,7 +14,7 @@
"prettier:fix": "prettier glass/src --write",
"ts:check": "vue-tsc --noEmit",
"ts:watch": "vue-tsc --watch --noEmit",
"start": "cross-env NODE_OPTIONS=--max-old-space-size=8192 webpack serve --config ./webpack/webpack.config.dev.js",
"start": "cross-env NODE_OPTIONS=--max-old-space-size=2048 webpack serve --config ./webpack/webpack.config.dev.js",
"vitest": "vitest --run --coverage"
},
"dependencies": {
Expand Down

0 comments on commit 2364794

Please sign in to comment.