mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
Correct development doc and translate devcontainer.json comments to english
This commit is contained in:
parent
ccb53324e3
commit
1bb8fa9e67
2 changed files with 4 additions and 7 deletions
|
|
@ -6,12 +6,12 @@
|
||||||
"terminal.integrated.defaultProfile.linux": "bash"
|
"terminal.integrated.defaultProfile.linux": "bash"
|
||||||
},
|
},
|
||||||
"extensions": [
|
"extensions": [
|
||||||
"rebornix.ruby", // Ruby-Unterstützung
|
"rebornix.ruby", // Ruby-Support
|
||||||
"esbenp.prettier-vscode", // Prettier für JS-Formatierung
|
"esbenp.prettier-vscode", // Prettier for JS-Formating
|
||||||
"dbaeumer.vscode-eslint" // ESLint für JavaScript
|
"dbaeumer.vscode-eslint" // ESLint for JavaScript
|
||||||
],
|
],
|
||||||
"postCreateCommand": "yarn install && bundle config set --local path 'vendor/bundle' && bundle install --jobs 20 --retry 5",
|
"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",
|
"remoteUser": "root",
|
||||||
"workspaceFolder": "/var/app"
|
"workspaceFolder": "/var/app"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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):
|
Now you can create/prepare the Database (this need to be done once):
|
||||||
```bash
|
```bash
|
||||||
bundle exec rails db:create
|
|
||||||
bundle exec rails db:prepare
|
bundle exec rails db:prepare
|
||||||
bundle exec rake data:migrate
|
|
||||||
bundle exec rake db:seed
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Afterwards you can run sidekiq:
|
Afterwards you can run sidekiq:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue