This commit is contained in:
2024-08-13 16:46:44 -04:00
commit 8cb37c6011
418 changed files with 69567 additions and 0 deletions

12
backend/start Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
echo | lscpu | grep "rchitecture"
if lscpu | grep -q "arm";
then
echo "Sarting for ARM"
docker-compose -f docker-compose-ARM.yaml up -d
else
echo "Starting for X86"
docker-compose up -d
fi