https://github.com/parassolanki/tetoy
https://github.com/parassolanki/tetoy
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/parassolanki/tetoy
- Owner: ParasSolanki
- Created: 2024-03-11T17:41:36.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-26T17:20:28.000Z (over 2 years ago)
- Last Synced: 2025-03-23T11:11:20.233Z (over 1 year ago)
- Language: TypeScript
- Size: 549 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tetoy
## Installation
Install Dependencies.
```bash
pnpm install
```
## Run Locally
To run both WebApp and Api server.
```bash
pnpm dev
```
To run WebApp Dev Server.
```bash
pnpm dev:web
```
To build WebApp.
```bash
pnpm build:web
```
To run API Server.
```bash
pnpm dev:api
```
## Project Strcture
This project is a monorepo with PNPM workspaces. It has three main projects: a web app with [React](https://react.dev), an API with [Hono](https://hono.dev/), and a database([SQLite](https://www.sqlite.org/index.html)) with [DrizzleORM](https://orm.drizzle.team).
```
.
|-- apps
| |-- web # Web App
|-- packages
| |-- api # Api Server
| |-- db # Database
└── README.md
```