add ability to create user, add password auth, add logging and work on dev containers

This commit is contained in:
maxid
2025-02-16 20:52:05 +01:00
parent ab6fc52e42
commit 5ac7e0a0d4
8 changed files with 63 additions and 34 deletions

View File

@@ -2,7 +2,7 @@
// README at: https://github.com/devcontainers/templates/tree/main/src/postgres
{
"name": "Python 3 & PostgreSQL",
"dockerComposeFile": "docker-compose.yml",
"dockerComposeFile": "./docker-compose.yml",
"service": "app",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
@@ -14,11 +14,14 @@
// "forwardPorts": [5000, 5432],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "pip install --user -r ./MediaManager/src/requirements.txt",
"postCreateCommand": "pip install --user -r ./MediaManager/src/requirements.txt",
// Configure tool-specific properties.
"customizations" : {
"jetbrains" : {
"settings": {
"com.intellij:app:HttpConfigurable.use_proxy_pac": true
},
"backend" : "PyCharm"
}
},