blob: 4de55dbef134f13526aab46111311e326ad424ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
cat <<'EOF'
==> MeowCLI creates a SQLite database in the current working directory by default.
==> Set the DATABASE_URL environment variable explicitly to control where data is stored.
==>
==> Example:
==> export DATABASE_URL=~/.meowcli/meowcli.db
==>
==> For persistent setup, put DATABASE_URL in your shell profile,
==> a systemd environment file, or whatever runtime environment starts MeowCLI.
EOF
}
post_upgrade() {
post_install
}
|