FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
SavingFromFormData/.devcontainer/devcontainer.json at main · eravan285-web/SavingFromFormData · GitHub
eravan285-web
/
SavingFromFormData
Public
forked from
hackesofice/SavingFromFormData
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
SavingFromFormData
/
.devcontainer
/
devcontainer.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
33 lines (33 loc) · 1018 Bytes
Breadcrumbs
SavingFromFormData
/
.devcontainer
/
devcontainer.json
Copy path
File metadata and controls
33 lines (33 loc) · 1018 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name"
:
"
Python 3
"
,
//
Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image"
:
"
mcr.microsoft.com/devcontainers/python:1-3.11-bullseye
"
,
"customizations"
: {
"codespaces"
: {
"openFiles"
: [
"
README.md
"
,
"
EMain.py
"
]
},
"vscode"
: {
"settings"
: {},
"extensions"
: [
"
ms-python.python
"
,
"
ms-python.vscode-pylance
"
]
}
},
"updateContentCommand"
:
"
[ -f packages.txt ] && sudo apt update && sudo apt upgrade -y && sudo xargs apt install -y <packages.txt; [ -f requirements.txt ] && pip3 install --user -r requirements.txt; pip3 install --user streamlit; echo '✅ Packages installed and Requirements met'
"
,
"postAttachCommand"
: {
"server"
:
"
streamlit run EMain.py --server.enableCORS false --server.enableXsrfProtection false
"
},
"portsAttributes"
: {
"8501"
: {
"label"
:
"
Application
"
,
"onAutoForward"
:
"
openPreview
"
}
},
"forwardPorts"
: [
8501
]
}
Back
|
FazBrowse Home
|
New Git URL