Skip to content

Commit

Permalink
chore: updates local dev files
Browse files Browse the repository at this point in the history
  • Loading branch information
sennierer committed Jun 19, 2023
1 parent 8caaca1 commit 3149da3
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
46 changes: 23 additions & 23 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"program": "${workspaceFolder}/manage.py",
"args": [
"runserver",
"--settings=apis.settings.local_dev"
"--settings=apis.settings.dev"
],
"django": true
},
Expand All @@ -49,28 +49,28 @@
"django": true
},
{
"name": "Paas remote Jupyter",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"args": [
"shell_plus",
//"--notebook",
"--settings=apis.settings.paas_remote"
],
"django": true
},
"name": "Paas remote Jupyter",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"args": [
"shell_plus",
//"--notebook",
"--settings=apis.settings.paas_remote"
],
"django": true
},
{
"name": "Paas local Jupyter",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"args": [
"shell_plus",
//"--notebook",
"--settings=apis.settings.local_dev"
],
"django": true
},
"name": "Paas local Jupyter",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"args": [
"shell_plus",
//"--notebook",
"--settings=apis.settings.local_dev"
],
"django": true
},
]
}
2 changes: 1 addition & 1 deletion apis/settings/local_dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@

STATICFILES_DIRS = [BASE_DIR + "/member_images"]

SASS_ROOT = os.path.join(BASE_DIR, 'paas_theme', 'static','theme', 'css')
SASS_ROOT = os.path.join(BASE_DIR, 'paas_theme', 'static', 'css')
SASS_PROCESSOR_ROOT = SASS_ROOT

STATICFILES_FINDERS = [
Expand Down

0 comments on commit 3149da3

Please sign in to comment.