Spaces:
Sleeping
Sleeping
dbleek
commited on
Commit
•
80cc588
1
Parent(s):
9c5b4c5
Completed Milestone 1
Browse files- .devcontainer/devcontainer.json +28 -0
- README.md +8 -2
- milestone-1.jpg +0 -0
.devcontainer/devcontainer.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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/ubuntu
|
3 |
+
{
|
4 |
+
"name": "Ubuntu",
|
5 |
+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
6 |
+
"image": "mcr.microsoft.com/devcontainers/base:jammy",
|
7 |
+
"features": {
|
8 |
+
"ghcr.io/devcontainers/features/python:1": {},
|
9 |
+
"ghcr.io/devcontainers-contrib/features/black:2": {},
|
10 |
+
"ghcr.io/devcontainers-contrib/features/flake8:2": {},
|
11 |
+
"ghcr.io/devcontainers-contrib/features/isort:2": {}
|
12 |
+
}
|
13 |
+
|
14 |
+
// Features to add to the dev container. More info: https://containers.dev/features.
|
15 |
+
// "features": {},
|
16 |
+
|
17 |
+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
18 |
+
// "forwardPorts": [],
|
19 |
+
|
20 |
+
// Use 'postCreateCommand' to run commands after the container is created.
|
21 |
+
// "postCreateCommand": "uname -a",
|
22 |
+
|
23 |
+
// Configure tool-specific properties.
|
24 |
+
// "customizations": {},
|
25 |
+
|
26 |
+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
27 |
+
// "remoteUser": "root"
|
28 |
+
}
|
README.md
CHANGED
@@ -1,2 +1,8 @@
|
|
1 |
-
# cs-gy-6613-project
|
2 |
-
Project for CS-GY-6613 Spring 2023
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# cs-gy-6613-project
|
2 |
+
Project for CS-GY-6613 Spring 2023
|
3 |
+
|
4 |
+
For milestone 1, I used the quick start instructions from VS code to connect to a remote Ubuntu container:
|
5 |
+
|
6 |
+
https://code.visualstudio.com/docs/devcontainers/containers#_quick-start-open-an-existing-folder-in-a-container
|
7 |
+
|
8 |
+
![Alt text](milestone-1.jpg "Screenshot for Milestone 1")
|
milestone-1.jpg
ADDED