lasthourcloud/scripts/run

64 lines
1.6 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env bash
# Inspired on https://github.com/adriancooney/Taskfile
2023-04-04 13:30:45 +00:00
#
# Install an alias, to be able to simply execute `run`
2023-04-24 11:25:02 +00:00
# echo 'alias run=./scripts/run' >> ~/.aliases
#
2023-04-04 13:30:45 +00:00
# Define Docker Compose command prefix...
set -e
2023-04-04 13:30:45 +00:00
if [ $? == 0 ]; then
DOCKER_COMPOSE="docker compose"
else
DOCKER_COMPOSE="docker-compose"
fi
function help {
echo "$0 <task> <args>"
echo "Tasks:"
compgen -A function | cat -n
}
2023-04-28 13:22:36 +00:00
function sync-bunny {
2023-05-03 07:57:06 +00:00
php artisan sync:bunny --env=secrets
2023-04-28 13:22:36 +00:00
}
2023-04-24 11:25:02 +00:00
function queue {
bash vendor/bin/spin exec -u webuser coolify php artisan queue:listen
}
2023-04-28 07:00:47 +00:00
function schedule {
bash vendor/bin/spin exec -u webuser coolify php artisan schedule:work
}
function schedule-run {
bash vendor/bin/spin exec -u webuser coolify php artisan schedule:run
}
2023-04-24 11:25:02 +00:00
function reset-db {
bash vendor/bin/spin exec -u webuser coolify php artisan migrate:fresh --seed
}
2023-05-09 12:45:47 +00:00
function reset-db-production {
bash vendor/bin/spin exec -u webuser coolify php artisan migrate:fresh --force --seed --seeder=ProductionSeeder
}
2023-04-24 11:49:29 +00:00
function coolify {
2023-04-24 11:25:02 +00:00
bash vendor/bin/spin exec -u webuser coolify bash
}
function coolify-root {
bash vendor/bin/spin exec coolify bash
}
function vite {
bash vendor/bin/spin exec vite bash
}
2023-05-02 17:15:17 +00:00
function build-builder {
act -W .github/workflows/coolify-builder.yml --secret-file .env.secrets
}
2023-05-03 06:51:11 +00:00
function tinker {
bash vendor/bin/spin exec -u webuser coolify php artisan tinker
}
function db {
bash vendor/bin/spin exec -u webuser coolify php artisan db
}
function default {
help
}
TIMEFORMAT="Task completed in %3lR"
time "${@:-default}"