Initial commit: Open sourcing all of the Maple Open Technologies code.

This commit is contained in:
Bartlomiej Mika 2025-12-02 14:33:08 -05:00
commit 755d54a99d
2010 changed files with 448675 additions and 0 deletions

33
Taskfile.yml Normal file
View file

@ -0,0 +1,33 @@
version: "3"
tasks:
frontend:
desc: "Start the developer server for the frontend"
cmds:
- cd ./web/maplefile-frontend && npm run dev
backend:
desc: Start the cloud services backend in developer mode
cmds:
- go work use ./cloud/maplefile-backend
- docker-compose -p backend -f ./cloud/maplefile-backend/dev.docker-compose.yml up
backend-console:
desc: Open console in (developer mode) running cloud services backend
cmds:
- docker exec -it backend bash
initworkspace:
desc: (Do not run) Init the go workspace
cmds:
- go work init
updateworkspace:
desc: Update the go workspace for this project
cmds:
- go work use -r .
claude:
desc: "Start Claude and let Claude work uninterrupted until completion"
cmds:
- claude --dangerously-skip-permissions