Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yogesh2104/abt.yogesh
https://github.com/yogesh2104/abt.yogesh
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/yogesh2104/abt.yogesh
- Owner: yogesh2104
- Created: 2024-04-14T05:57:54.000Z (10 months ago)
- Default Branch: v2
- Last Pushed: 2024-12-17T05:57:39.000Z (about 2 months ago)
- Last Synced: 2024-12-17T06:31:27.596Z (about 2 months ago)
- Language: TypeScript
- Homepage: https://abtyogesh.vercel.app
- Size: 17.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# https://abt-yogesh.vercel.app
- **Framework**: [Next.js 14](https://nextjs.org/)
- **Database**: [Postgres provided by vercel](https://vercel.com/postgres)
- **Authentication**: [NextAuth.js](https://next-auth.js.org)
- **Deployment**: [Vercel](https://vercel.com)
- **Styling**: [Tailwind CSS](https://tailwindcss.com)
- **UI**: [Shadcn UI](https://ui.shadcn.com) [Aceternity UI](https://ui.aceternity.com/)
- **Analytics**: [Vercel Analytics](https://vercel.com/analytics)## Running Locally
```bash
git clone https://github.com/yogesh2104/abt.yogesh.git
cd abt.yogesh
pnpm install
pnpm run dev
```Create a `.env.local` file similar to [`.env.example`](https://github.com/yogesh2104/abt.yogesh/blob/main/.env.example).
## Database Schema
```sql
CREATE TABLE guestbook (
id SERIAL PRIMARY KEY,
email VARCHAR(255),
body TEXT,
created_by VARCHAR(255),
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
```