gperdrizet commited on
Commit
c81f0b4
·
verified ·
1 Parent(s): f298c57

Added devcontainer configuration

Browse files
Files changed (1) hide show
  1. .devcontainer/devcontainer.json +19 -0
.devcontainer/devcontainer.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // For format details, see https://aka.ms/devcontainer.json. For config options, see the
2
+ // README at: https://github.com/devcontainers/templates/tree/main/src/python
3
+ {
4
+ "name": "Python 3.10: resumate",
5
+ "image": "mcr.microsoft.com/devcontainers/python:0-3.11",
6
+ "onCreateCommand": "sudo apt update && sudo apt upgrade -y && pip3 install --upgrade pip && pip3 install --user -r requirements.txt",
7
+ "customizations": {
8
+ "vscode": {
9
+ "extensions": [
10
+ "-dbaeumer.vscode-eslint",
11
+ "ms-python.python",
12
+ "streetsidesoftware.code-spell-checker"
13
+ ]
14
+ }
15
+ },
16
+
17
+ // "postCreateCommand": "",
18
+ "postAttachCommand": "gradio resumate.py"
19
+ }