feat: Add README and run script for Invoice Ninja setup on CasaOS, including branding and support information

This commit is contained in:
Christopher
2024-08-11 21:11:38 -05:00
parent 237d52aae2
commit f967249292
2 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
# Run command
```bash
bash -c "$(wget -qLO - https://raw.githubusercontent.com/bigbeartechworld/big-bear-scripts/master/setup-invoice-ninja-for-casaos-step-2/run.sh)"
```

View File

@@ -0,0 +1,26 @@
#!/bin/bash
# Define a message for branding purposes
MESSAGE="Made by BigBearTechWorld"
# Function to print a decorative line
print_decorative_line() {
# Prints a line of dashes to the console
printf "%s\n" "------------------------------------------------------"
}
# Print the introduction message with decorations
echo
print_decorative_line
echo "Setup Invoice Ninja for CasaOS Step 2"
print_decorative_line
echo
echo "$MESSAGE"
echo
print_decorative_line
echo
echo "If this is useful, please consider supporting my work at: https://ko-fi.com/bigbeartechworld"
echo
print_decorative_line
docker exec -it big-bear-invoice-ninja php artisan migrate:fresh --seed && php artisan db:seed && php artisan ninja:create-test-data && cp .env.example .env