Initial commit: Open sourcing all of the Maple Open Technologies code.
This commit is contained in:
commit
755d54a99d
2010 changed files with 448675 additions and 0 deletions
33
Taskfile.yml
Normal file
33
Taskfile.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue