chore: enable dependabot and rename app to admin

This commit is contained in:
DaanSelen
2026-03-04 14:13:20 +01:00
parent 9e69a066b5
commit 8ad7edcf1b
178 changed files with 40 additions and 8 deletions
+27
View File
@@ -0,0 +1,27 @@
#!/bin/bash
echo "Running vite build..."
if npm run build; then
echo "Vite build successful."
else
echo "Vite build failed. Exiting."
exit 1
fi
echo "Checking for changes to commit..."
if git diff-index --quiet HEAD --; then
if git commit -a; then
echo "Git commit successful."
else
echo "Git commit failed. Exiting."
exit 1
fi
else
echo "No changes to commit. Skipping commit."
fi
echo "Pushing changes to remote..."
if git push; then
echo "Git push successful."
else
echo "Git push failed. Exiting."
exit 1
fi
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "client",
"version": "0.0.0",
"version": "v1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "client",
"version": "0.0.0",
"version": "v1.0",
"dependencies": {
"axios": "^1.9.0",
"bootstrap": "^5.3.6",