Restructured project by moving files from subfolder to main directory

This commit is contained in:
Andreas Düren
2025-03-16 14:06:02 +01:00
parent 15fd04ef70
commit 14f2e66c2f
14 changed files with 320 additions and 92 deletions

15
package.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
set -e
# Create a temporary directory for packaging
mkdir -p build
rm -rf build/*
# Copy all files to the build directory
cp -r CloudronManifest.json Dockerfile .env start.sh stop.sh README.md logo.svg build/
# Create the package
cd build
cloudron package
echo "Package created successfully!"