My opinionated ruby on rails template
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add boxcar exe

+23
+23
boxcar
··· 1 + #!/bin/bash 2 + 3 + if [ -z "$1" ]; then 4 + echo "Usage: boxcar <app_name>" 5 + exit 1 6 + fi 7 + 8 + rails new "$1" \ 9 + --no-rc \ 10 + --skip-kamal \ 11 + --skip-jbuilder \ 12 + --skip-test \ 13 + --skip-system-test \ 14 + --skip-action-mailbox \ 15 + --skip-action-text \ 16 + --skip-active-storage \ 17 + --skip-sprockets \ 18 + --skip-i18n \ 19 + --skip-spring \ 20 + --javascript=bun \ 21 + --css=tailwind \ 22 + -d postgresql \ 23 + -m https://raw.githubusercontent.com/jaspermayone/boxcar/main/template.rb