Skip to content

Commit e8f2ba6

Browse files
committed
More descriptive default task
1 parent 80877f2 commit e8f2ba6

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

Taskfile.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,20 @@ tasks:
55
default:
66
desc: The default task that shows help
77
cmds:
8-
- task --list
8+
- echo "Available tasks (in preferred order):"
9+
- echo " install Install the project"
10+
- echo " reinstall Reinstall from scratch. WARNING Deletes the database!"
11+
- echo " up Start the environment"
12+
- echo " down Remove all containers"
13+
- echo " purge Remove all containers and volumes. WARNING Deletes the database!"
14+
- echo " stop Stop all containers"
15+
- echo " logs Follow docker logs"
16+
- echo " cc Clear the cache"
17+
- echo " tenant_add Add a new tenant group"
18+
- echo " user_add Add a new user"
19+
- echo " load_templates Load templates and screen layouts"
20+
- echo ""
21+
922

1023
install:
1124
desc: Install the project

0 commit comments

Comments
 (0)