You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pvincent
d44f90697e
|
10 months ago | |
---|---|---|
.vscode | 10 months ago | |
app | 10 months ago | |
bin | 10 months ago | |
config | 10 months ago | |
db | 10 months ago | |
lib | 10 months ago | |
log | 10 months ago | |
public | 10 months ago | |
storage | 10 months ago | |
test | 10 months ago | |
tmp | 10 months ago | |
vendor | 10 months ago | |
.dockerignore | 10 months ago | |
.gitattributes | 10 months ago | |
.gitignore | 10 months ago | |
.rubocop.yml | 10 months ago | |
.ruby-version | 10 months ago | |
.semver_git_tag | 10 months ago | |
Dockerfile | 10 months ago | |
Gemfile | 10 months ago | |
Gemfile.lock | 10 months ago | |
Procfile.dev | 10 months ago | |
README.md | 10 months ago | |
Rakefile | 10 months ago | |
config.ru | 10 months ago |
README.md
README
Install from scratch Debian 12 (bookworm)
sudo apt install -y build-essential ruby-dev libpq-dev libyaml-dev
2>/dev/null grep -q GEM_HOME $HOME/.bashrc || printf "export GEM_HOME=$HOME/.ruby\nexport PATH=\$PATH:\$GEM_HOME/bin\n" >> $HOME/.bashrc && source $HOME/.bashrc
[[ -f $HOME/.gemrc ]] || echo 'gem: --no-document' >> $HOME/.gemrc
gem install rails bundler
bundle install
database.yml
[...]
development:
<<: *default
database: ruby-debug
user: ruby-debug
password: ruby-debug
host: ct1.lxd
[...]
rails generate scaffold score name:string grade:integer rails db:migrate
Gemfile
group :development do
[...]
gem 'rubocop', require: false
end
Debugger via ruby-lsp
- run OK, but without Procfile (no more tailwincss/watch)
- attach disfunctions (attach PORT but no interaction/stop/run)
Extensions
- Ruby-lsp
- Ruby-lsp-rails
- Ruby Db Schema
- Markdown All in One
- TODO Highliter
- run
rails notes
to show up any TODO or FIXME
- run