Skip to content

Commit 97a1951

Browse files
author
github-actions
committed
update with project-syncing action
1 parent 10b3238 commit 97a1951

File tree

3 files changed

+12
-28
lines changed

3 files changed

+12
-28
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Container",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "jelaniwoods/appdev2023-rails-template",
6+
"image": "firstdraft/appdev-rails-template",
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
// "features": {},
@@ -26,7 +26,7 @@
2626
"otherPortsAttributes": {"onAutoForward": "ignore"},
2727

2828
// Use 'postCreateCommand' to run commands after the container is created.
29-
"postCreateCommand": "bin/setup",
29+
// "postCreateCommand": "",
3030

3131
// Configure tool-specific properties.
3232
"customizations": {

.gitpod.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
image: jelaniwoods/appdev2023-rails-template
1+
image: firstdraft/appdev-rails-template
22

33
tasks:
44
- before: |
@@ -9,7 +9,6 @@ tasks:
99
export GEM_HOME=/workspace/.rvm
1010
export GEM_PATH=$GEM_HOME:$GEM_PATH
1111
export PATH=/workspace/.rvm/bin:$PATH
12-
bin/setup
1312
ports:
1413
- port: 3000
1514
onOpen: open-preview

.vscode/settings.json

Lines changed: 9 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"editor.linkedEditing": true,
99
"editor.minimap.enabled": false,
1010
"editor.smoothScrolling": false,
11-
"editor.wordBasedSuggestionsMode": "allDocuments",
1211
"editor.wordWrap": "on",
1312
"editor.wrappingIndent": "deepIndent",
1413
"workbench.editor.closeOnFileDelete": true,
@@ -20,42 +19,27 @@
2019
"**/.git": true,
2120
".vscode": true,
2221
".bundle": true,
23-
".gitignore": true,
24-
".gitpod.yml": true,
25-
".rspec": true,
26-
".devcontainer/": true,
27-
"config.ru": false,
28-
"Dockerfile": false,
29-
"Gemfile": false,
30-
"Gemfile.lock": false,
31-
"tmp/": true,
32-
"install-packages": true,
33-
"main.rb": true,
34-
"README.md": true,
35-
"app.rb": false,
36-
"environment.rb": false,
37-
"bin/": true,
38-
"spec/": true,
39-
"examples.txt": true,
40-
"config/": false
4122
},
4223
"files.insertFinalNewline": true,
4324
"files.trimFinalNewlines": true,
44-
"screencastMode.onlyKeyboardShortcuts": true,
25+
"screencastMode.keyboardOptions": {
26+
"showKeys": false,
27+
"showKeybindings": true,
28+
"showCommands": false,
29+
"showCommandGroups": false,
30+
"showSingleEditorCursorMoves": true
31+
},
4532
"screencastMode.verticalOffset": 10,
4633
"explorer.compactFolders": false,
4734
"explorer.incrementalNaming": "smart",
48-
"html.format.endWithNewline": true,
4935
"html.format.preserveNewLines": true,
5036
"html.format.templating": true,
5137
"terminal.integrated.altClickMovesCursor": true,
5238
"terminal.integrated.defaultProfile.linux": "bash",
5339
"vscode-erb-beautify.keepBlankLines": 1,
54-
"ruby.intellisense": false,
5540
"gitpod.openInStable.neverPrompt": true,
5641
"gitlens.showWelcomeOnInstall": false,
5742
"gitlens.currentLine.enabled": false,
58-
"redhat.telemetry.enabled": false,
5943
"emmet.includeLanguages": {
6044
"erb": "html"
6145
},
@@ -65,7 +49,8 @@
6549
},
6650
"[erb]": {
6751
"editor.defaultFormatter": "aliariff.vscode-erb-beautify",
68-
"editor.formatOnSave": false
52+
"editor.formatOnSave": false,
53+
"editor.autoClosingBrackets": "beforeWhitespace"
6954
},
7055
"files.associations": {
7156
"*.html.erb": "erb"

0 commit comments

Comments
 (0)