summaryrefslogtreecommitdiff
path: root/examples/rake/Justfile
blob: e25852a80a6bf1983e77ca4733640a15e62630ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Install gem dependencies
setup:
    bundle install

# Apply configuration
run:
    rake setup

# Dry run — show what would change without making changes
dry:
    rake setup -- --dry

# Verbose output
debug:
    rake setup -- --debug