Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ARG IMAGE=bullseye
FROM --platform=amd64 mcr.microsoft.com/devcontainers/${IMAGE}
28 changes: 28 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.245.0/containers/python-3
{
"name": "ms-identity-python-webapp",
"build": {
"dockerfile": "Dockerfile",
"args": {
"IMAGE": "python:3.10"
}
},
"features": {
"ghcr.io/devcontainers/features/azure-cli:1": {}
},
// Configure tool-specific properties.
"customizations": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance"
]
},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [5000, 50505],

// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode"
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,5 @@ venv.bak/

# flask session files
flask_session/

.azure/
146 changes: 0 additions & 146 deletions AppCreationScripts/AppCreationScripts.md

This file was deleted.

139 changes: 0 additions & 139 deletions AppCreationScripts/Cleanup.ps1

This file was deleted.

Loading