feat: deploy infrastructure + disk/drive, calendar, presentation, workspaces, onboarding, demo user

This commit is contained in:
2026-05-19 16:26:26 +03:00
parent 688d043dad
commit 3529c39b22
304 changed files with 18826 additions and 1176 deletions
+28
View File
@@ -0,0 +1,28 @@
#!/bin/bash
set -e
TOKEN="2608ab5b7a8965190ab4d8503a8197a47b75b42c"
GITEA_URL="http://localhost:3000"
echo "Creating repository 'voidea' in Gitea..."
RESPONSE=$(curl -s -X POST "$GITEA_URL/api/v1/user/repos" \
-H "Content-Type: application/json" \
-H "Authorization: token $TOKEN" \
-d '{
"name": "voidea",
"description": "VoIdeaAI - voice-first AI idea assistant",
"private": false,
"auto_init": false,
"default_branch": "master"
}')
echo "Response: $RESPONSE"
if echo "$RESPONSE" | grep -q '"id"'; then
echo "Repository created successfully!"
echo "Clone URL: http://localhost:3000/angel/voidea.git"
echo "Web URL: http://git.voideaai.ru/angel/voidea"
else
echo "Failed to create repository."
fi