This repository hosts the backend APIs of Zynapse, the GenAI powered second brain project.
git clone https://github.com/utteneze/zynapse-tail
- Install the dependencies.
pnpm install
- This should fire up the server in development mode. Localhost address will be displayed on the console.
pnpm dev
apps
└── [slice]
├── entry-points
│ ├── api
│ │ ├── routes.ts
│ │ └── controller.ts
│ └── listeners
├── domain
│ ├── emitters
│ ├── services
│ │ └── [service].ts
│ ├── entities
│ │ └── [entity].ts
│ └── types
└── data-access
├── repositories
│ ├── interfaces
│ │ └── [interface].ts
│ └── implementations
│ └── [implementation].ts
└── models
└── [model].ts
shared
├── webserver
│ ├── server.ts
│ └── error.ts
├── database
│ └── setup.ts
├── middlewares
├── config
│ ├── bootstrap.ts
│ └── environment.ts
├── interfaces
└── dtos
index.ts