From fefc4546533d66c4cb3b1135184dd610f43444d8 Mon Sep 17 00:00:00 2001 From: Tiago Yamamoto Date: Thu, 11 Dec 2025 18:01:19 -0300 Subject: [PATCH] Add monorepo scaffold and Appwrite cloud configuration --- .env.example | 5 +++++ appwrite-functions/.gitkeep | 0 appwrite.json | 11 +++++++++++ dashboard/.gitkeep | 0 landing/.gitkeep | 0 5 files changed, 16 insertions(+) create mode 100644 .env.example create mode 100644 appwrite-functions/.gitkeep create mode 100644 appwrite.json create mode 100644 dashboard/.gitkeep create mode 100644 landing/.gitkeep diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..bcc2edd --- /dev/null +++ b/.env.example @@ -0,0 +1,5 @@ +APPWRITE_ENDPOINT=https://cloud.appwrite.io/v1 +APPWRITE_PROJECT_ID= +APPWRITE_API_KEY= +APPWRITE_FUNCTIONS_ENDPOINT= +APPWRITE_FUNCTIONS_API_KEY= diff --git a/appwrite-functions/.gitkeep b/appwrite-functions/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/appwrite.json b/appwrite.json new file mode 100644 index 0000000..20b1d59 --- /dev/null +++ b/appwrite.json @@ -0,0 +1,11 @@ +{ + "provider": "appwrite-cloud", + "description": "Appwrite Cloud configuration for DevOps orchestration platform", + "endpoint": "${APPWRITE_ENDPOINT}", + "projectId": "${APPWRITE_PROJECT_ID}", + "apiKey": "${APPWRITE_API_KEY}", + "functions": { + "defaultRuntime": "deno-1.35", + "source": "./appwrite-functions" + } +} diff --git a/dashboard/.gitkeep b/dashboard/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/landing/.gitkeep b/landing/.gitkeep new file mode 100644 index 0000000..e69de29