-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dev containers for portal, RR and portal-react
- Loading branch information
1 parent
f67048e
commit 8d3535c
Showing
7 changed files
with
98 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "codeforlife-portal-react", | ||
"dockerComposeFile": [ | ||
"../../docker-compose.yml" | ||
], | ||
"service": "base-service", | ||
"shutdownAction": "none", | ||
"workspaceFolder": "/workspace/codeforlife-portal-react", | ||
"remoteUser": "root", | ||
"postCreateCommand": "./run", | ||
"features": { | ||
"ghcr.io/devcontainers/features/python:1": { | ||
"version": "3.8" | ||
}, | ||
"ghcr.io/devcontainers/features/node:1": { | ||
"version": "18" | ||
} | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"python.defaultInterpreterPath": ".venv/bin/python" | ||
}, | ||
"extensions": [ | ||
"ms-python.python" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "codeforlife-portal", | ||
"dockerComposeFile": [ | ||
"../../docker-compose.yml" | ||
], | ||
"service": "base-service", | ||
"shutdownAction": "none", | ||
"workspaceFolder": "/workspace/codeforlife-portal", | ||
"remoteUser": "root", | ||
"postCreateCommand": "pipenv install --dev", | ||
"features": { | ||
"ghcr.io/devcontainers/features/python:1": { | ||
"version": "3.8" | ||
}, | ||
"ghcr.io/devcontainers-contrib/features/pipenv:2": { | ||
"version": "2023.11.15" | ||
} | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"python.defaultInterpreterPath": ".venv/bin/python" | ||
}, | ||
"extensions": [ | ||
"ms-python.python" | ||
] | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "rapid-router", | ||
"dockerComposeFile": [ | ||
"../../docker-compose.yml" | ||
], | ||
"service": "base-service", | ||
"shutdownAction": "none", | ||
"workspaceFolder": "/workspace/rapid-router", | ||
"remoteUser": "root", | ||
"postCreateCommand": "pipenv install --dev", | ||
"features": { | ||
"ghcr.io/devcontainers/features/python:1": { | ||
"version": "3.8" | ||
}, | ||
"ghcr.io/devcontainers-contrib/features/pipenv:2": { | ||
"version": "2023.11.15" | ||
} | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"python.defaultInterpreterPath": ".venv/bin/python" | ||
}, | ||
"extensions": [ | ||
"ms-python.python" | ||
] | ||
} | ||
} | ||
} |
Submodule codeforlife-portal
updated
8 files
+8 −0 | .github/workflows/contributing.yaml | |
+0 −0 | .venv/.gitkeep | |
+4 −4 | deploy/middleware/security.py | |
+1 −0 | example_project/portal_test_settings.py | |
+1 −0 | example_project/settings.py | |
+1 −1 | portal/__init__.py | |
+1 −1 | portal/tests/test_middleware.py | |
+1 −1 | run_testserver |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# https://github.com/devcontainers | ||
version: '1' | ||
services: | ||
base-service: | ||
image: mcr.microsoft.com/devcontainers/base:ubuntu-22.04 | ||
volumes: | ||
# Mount the root folder that contains .git | ||
- .:/workspace:cached | ||
command: sleep infinity |
Submodule rapid-router
updated
24 files
+8 −0 | .github/workflows/contributing.yaml | |
+4 −4 | .github/workflows/publish-python-package.yml | |
+1 −3 | .gitignore | |
+0 −0 | .venv/.gitkeep | |
+29 −0 | .vscode/launch.json | |
+4 −0 | .vscode/settings.json | |
+60 −0 | CHANGELOG.md | |
+8 −8 | Pipfile | |
+4 −3 | Pipfile.lock | |
+1 −1 | game/__init__.py | |
+28 −19 | game/messages.py | |
+18 −0 | game/migrations/0087_workspace_python_view_enabled.py | |
+1 −0 | game/models.py | |
+3 −0 | game/static/game/image/icons/if_else.svg | |
+ − | game/static/game/image/if_else_example.png | |
+2 −1 | game/static/game/js/blocklyControl.js | |
+8 −7 | game/static/game/js/blocklyCustomBlocks.js | |
+18 −0 | game/static/game/js/drawing.js | |
+19 −1 | game/static/game/js/game.js | |
+5 −3 | game/static/game/js/level_editor.js | |
+42 −0 | game/static/game/js/level_selection.js | |
+0 −1 | game/templates/game/game.html | |
+39 −0 | game/tests/test_level_editor.py | |
+2 −0 | game/views/level.py |