Skip to content
Merged
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
52 changes: 50 additions & 2 deletions .devcontainer/demo/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"service": "web",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"overrideCommand": false,
"hostRequirements": {
"cpus": 4
},
"forwardPorts": [8000],
"portsAttributes": {
"8000": {
Expand All @@ -16,11 +19,56 @@
"openFiles": []
},
"vscode": {
"extensions": [],
"settings": {
"chat.disableAIFeatures": true,
"workbench.startupEditor": "none",
"telemetry.telemetryLevel": "off",
"workbench.tips.enabled": false,
"git.openRepositoryInParentFolders": "never"
"workbench.startupEditor": "none",
"workbench.editor.enablePreview": false,
"security.workspace.trust.enabled": false,
"extensions.autoCheckUpdates": false,
"extensions.ignoreRecommendations": true,
"git.enabled": false,
"git.autorefresh": false,
"git.decorations.enabled": false,
"scm.diffDecorations": "none",
"editor.minimap.enabled": false,
"editor.quickSuggestions": {
"other": "off",
"comments": "off",
"strings": "off"
},
"editor.suggestOnTriggerCharacters": false,
"editor.wordBasedSuggestions": "off",
"editor.parameterHints.enabled": false,
"editor.codeLens": false,
"editor.lightbulb.enabled": "off",
"editor.inlayHints.enabled": "off",
"editor.occurrencesHighlight": "off",
"editor.selectionHighlight": false,
"editor.renderLineHighlight": "none",
"editor.renderWhitespace": "none",
"editor.formatOnSave": false,
"editor.accessibilitySupport": "off",
"breadcrumbs.enabled": false,
"terminal.integrated.enablePersistentSessions": false,
"terminal.integrated.gpuAcceleration": "off",
"files.watcherExclude": {
"**/.git/**": true,
"**/data/**": true,
"**/static/**": true,
"**/media/**": true,
"**/thirdparty/**": true,
"**/*.dist": true
},
"search.exclude": {
"**/.git": true,
"**/data": true,
"**/static": true,
"**/media": true,
"**/thirdparty": true
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ using GitHub Codespaces. The badge below launches a ready-to-use demo instance:
the application starts automatically, with a demo account already created for you.

.. image:: https://github.com/codespaces/badge.svg
:target: https://github.com/codespaces/new/aboutcode-org/dejacode?ref=main&devcontainer_path=.devcontainer%2Fdemo%2Fdevcontainer.json&quickstart=true
:target: https://github.com/codespaces/new/aboutcode-org/dejacode?ref=main&devcontainer_path=.devcontainer%2Fdemo%2Fdevcontainer.json&machine=standardLinux32gb&quickstart=true
:alt: Open in GitHub Codespaces

#. **Click** the badge above and **confirm** the creation of the Codespace.
Expand Down
2 changes: 2 additions & 0 deletions compose.demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ services:
interval: 10s
timeout: 5s
retries: 5
start_period: 30s
start_interval: 1s

web:
image: ghcr.io/aboutcode-org/dejacode:latest
Expand Down
Loading