https://github.com/disin8/portfolio
My portfolio
https://github.com/disin8/portfolio
blog nextjs nextjs14 portfolio react taliwindcss typescript vercel
Last synced: 3 months ago
JSON representation
My portfolio
- Host: GitHub
- URL: https://github.com/disin8/portfolio
- Owner: disin8
- License: mit
- Created: 2024-06-15T11:01:47.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-30T07:51:43.000Z (over 1 year ago)
- Last Synced: 2025-01-24T04:44:14.232Z (over 1 year ago)
- Topics: blog, nextjs, nextjs14, portfolio, react, taliwindcss, typescript, vercel
- Language: TypeScript
- Homepage: https://disin8.vercel.app
- Size: 446 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# portfolio
- **Framework**: [Next.js](https://nextjs.org/)
- **Database**: [Postgres](https://vercel.com/postgres)
- **Deployment**: [Vercel](https://vercel.com)
- **Styling**: [Tailwind CSS](https://tailwindcss.com)
- **Analytics**: [Vercel Analytics](https://vercel.com/analytics)
## Running Locally
This application requires Node.js v18.17+.
```bash
git clone https://github.com/disin8/portfolio.git
cd portfolio
bun install
bun dev
```
Create a `.env.local` file similar to [`.env.example`](https://github.com/disin8/portfolio/blob/main/.env.example).
## Database Schema
```sql
CREATE TABLE views (
slug VARCHAR(255) PRIMARY KEY,
count INT NOT NULL
);
```