mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 14:16:22 +00:00
feat: reuse tasks
This commit is contained in:
parent
baec1f93d0
commit
ce2fd301b4
1 changed files with 29 additions and 7 deletions
|
@ -32,7 +32,7 @@ tasks:
|
|||
- "env"
|
||||
- "credentials"
|
||||
cmds:
|
||||
- "{{.HAINISH}} bundle"
|
||||
- "go-task bundle"
|
||||
sources:
|
||||
- "Gemfile"
|
||||
generates:
|
||||
|
@ -58,9 +58,9 @@ tasks:
|
|||
cmds:
|
||||
- "git lfs fetch"
|
||||
- "git lfs checkout"
|
||||
- "{{.HAINISH}} RAILS_ENV=production bundle exec rails webpacker:clobber"
|
||||
- "{{.HAINISH}} RAILS_ENV=production bundle exec rails assets:precompile"
|
||||
- "{{.HAINISH}} RAILS_ENV=production bundle exec rails assets:clean"
|
||||
- "go-task bundle rails -- webpacker:clobber RAILS_ENV=production"
|
||||
- "go-task bundle rails -- assets:precompile RAILS_ENV=production"
|
||||
- "go-task bundle rails -- assets:clean RAILS_ENV=production"
|
||||
sources:
|
||||
- "package.json"
|
||||
- "yarn.lock"
|
||||
|
@ -102,7 +102,7 @@ tasks:
|
|||
deps:
|
||||
- "database"
|
||||
cmds:
|
||||
- "{{.HAINISH}} bundle exec rails db:prepare"
|
||||
- "go-task rails -- db:prepare"
|
||||
serve:
|
||||
desc: "Run Rails development server"
|
||||
deps:
|
||||
|
@ -110,13 +110,35 @@ tasks:
|
|||
- "gems"
|
||||
cmds:
|
||||
- ": == Development server running at https://panel.{{.SUTTY_WITH_PORT}} =="
|
||||
- "{{.HAINISH}} bundle exec rails server"
|
||||
- "go-task rails -- server"
|
||||
status:
|
||||
- "test -f tmp/pids/server.pid"
|
||||
- "pgrep -F tmp/pids/server.pid"
|
||||
yarn:
|
||||
desc: "Yarn. Call with: go-task yarn -- arguments"
|
||||
deps:
|
||||
- "node-modules"
|
||||
cmds:
|
||||
- "{{.HAINISH}} yarn {{.CLI_ARGS}}"
|
||||
bundle:
|
||||
desc: "Bundle. Call with: go-task bundle -- arguments"
|
||||
deps:
|
||||
- "gems"
|
||||
cmds:
|
||||
- "{{.HAINISH}} bundle {{.CLI_ARGS}}"
|
||||
rails:
|
||||
desc: "Rails. Call with: go-task rails -- arguments"
|
||||
deps:
|
||||
- "prepare"
|
||||
cmds:
|
||||
- "go-task bundle -- exec rails {{.CLI_ARGS}}"
|
||||
console:
|
||||
desc: "Rails console"
|
||||
cmds:
|
||||
- "go-task rails -- console"
|
||||
doc:
|
||||
desc: "Build documentation"
|
||||
deps:
|
||||
- "gems"
|
||||
cmds:
|
||||
- "{{.HAINISH}} bundle exec yardoc -o public/doc app lib config db"
|
||||
- "go-task bundle -- exec yardoc -o public/doc app lib config db"
|
||||
|
|
Loading…
Reference in a new issue