Initial Phoenix Sankofa Cloud setup

- Complete project structure with Next.js frontend
- GraphQL API backend with Apollo Server
- Portal application with NextAuth
- Crossplane Proxmox provider
- GitOps configurations
- CI/CD pipelines
- Testing infrastructure (Vitest, Jest, Go tests)
- Error handling and monitoring
- Security hardening
- UI component library
- Documentation
This commit is contained in:
defiQUG
2025-11-28 12:54:33 -08:00
commit 6f28146ac3
229 changed files with 43136 additions and 0 deletions

35
api/package.json Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "phoenix-sankofa-api",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"type-check": "tsc --noEmit",
"db:migrate": "node dist/db/migrate.js",
"db:seed": "tsx src/db/seed.ts"
},
"dependencies": {
"@apollo/server": "^4.9.5",
"@as-integrations/fastify": "^1.1.0",
"fastify": "^4.24.3",
"pg": "^8.11.3",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"jsonwebtoken": "^9.0.2",
"bcryptjs": "^2.4.3",
"zod": "^3.22.4",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.12.0",
"@types/pg": "^8.10.9",
"@types/jsonwebtoken": "^9.0.5",
"@types/bcryptjs": "^2.4.6",
"typescript": "^5.4.0",
"tsx": "^4.7.0"
}
}