Correct development doc and translate devcontainer.json comments to english

This commit is contained in:
Sven Anders 2024-12-16 14:28:54 +01:00
parent ccb53324e3
commit 1bb8fa9e67
2 changed files with 4 additions and 7 deletions

View file

@ -6,12 +6,12 @@
"terminal.integrated.defaultProfile.linux": "bash"
},
"extensions": [
"rebornix.ruby", // Ruby-Unterstützung
"esbenp.prettier-vscode", // Prettier für JS-Formatierung
"dbaeumer.vscode-eslint" // ESLint für JavaScript
"rebornix.ruby", // Ruby-Support
"esbenp.prettier-vscode", // Prettier for JS-Formating
"dbaeumer.vscode-eslint" // ESLint for JavaScript
],
"postCreateCommand": "yarn install && bundle config set --local path 'vendor/bundle' && bundle install --jobs 20 --retry 5",
"forwardPorts": [3000], // Weiterleitung für Rails-Server
"forwardPorts": [3000], // Redirect to Rails-App-Server
"remoteUser": "root",
"workspaceFolder": "/var/app"
}

View file

@ -4,10 +4,7 @@ Load the directory in Vs-Code and press F1. And Run the command: `Dev Containers
Now you can create/prepare the Database (this need to be done once):
```bash
bundle exec rails db:create
bundle exec rails db:prepare
bundle exec rake data:migrate
bundle exec rake db:seed
```
Afterwards you can run sidekiq: