This repository contains the code for https://makemecross.com/
// in root directory
// run backend
pnpm run dev
in separate terminal:
// run frontend
cd packages/frontend/
pnpm run dev
pnpm sst deploy --stage prod
root
├── package.json
├── packages
│ ├── core
│ ├── frontend
│ │ └── src
│ │ │ ├── components
│ │ │ ├── lib
│ │ │ └── containers
│ └── functions
├── sst.config.ts
└── stacks
├── ApiStack.ts
├── AuthStack.ts
├── FrontendStack.ts
├── StorageStack.ts
└── test