Compare commits

..

No commits in common. "4890db8585160fde6783ee3e9e140a72754bbf81" and "e4065e7da4228558178f7695a41a0a5cc33e33ca" have entirely different histories.

6 changed files with 21 additions and 75 deletions

View File

@ -33,23 +33,25 @@
"customizations": { "customizations": {
"vscode": { "vscode": {
"settings": { "settings": {
"extensions.verifySignature": false "extensions": {
} "verifySignature": false
}, }
"extensions": [ },
"ms-python.python", "settings.extensions.verifySignature": false,
"mikestead.dotenv", "extensions": [
"VisualStudioExptTeam.vscodeintellicode", "ms-python.python",
"ms-python.black-formatter", "mikestead.dotenv",
"VisualStudioExptTeam.intellicode-api-usage-examples", "VisualStudioExptTeam.vscodeintellicode",
"ms-azuretools.vscode-docker", "ms-python.black-formatter",
"DavidAnson.vscode-markdownlint", "VisualStudioExptTeam.intellicode-api-usage-examples",
"yzhang.markdown-all-in-one" "ms-azuretools.vscode-docker",
] "DavidAnson.vscode-markdownlint",
"yzhang.markdown-all-in-one"
]
}
} }
} // Configure tool-specific properties.
// Configure tool-specific properties. // "customizations": {},
// "customizations": {}, // Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root.
// Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "devcontainer"
// "remoteUser": "devcontainer"
} }

1
.gitignore vendored
View File

@ -12,6 +12,7 @@ postgres-hstore/
docker-compose.override.yml docker-compose.override.yml
build_static build_static
.venv .venv
.vscode
__pycache__ __pycache__

View File

@ -1,5 +0,0 @@
{
"recommendations": [
"ms-vscode-remote.remote-containers"
]
}

20
.vscode/launch.json vendored
View File

@ -1,20 +0,0 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Django",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"args": [
"runserver",
"0.0.0.0:8000",
],
"django": true,
"justMyCode": true
}
]
}

View File

@ -1,5 +0,0 @@
{
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
}

27
.vscode/tasks.json vendored
View File

@ -1,27 +0,0 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "migrate",
"type": "shell",
"command": "${workspaceFolder}/manage.py migrate"
},
{
"label": "makemigrations",
"type": "shell",
"command": "${workspaceFolder}/manage.py makemigrations"
},
{
"label": "runserver",
"type": "shell",
"command": "${workspaceFolder}/manage.py runserver"
},
{
"label": "collectstatic",
"type": "shell",
"command": "${workspaceFolder}/manage.py collectstatic"
}
]
}