https://github.com/goosewin/blog
Personal blog of Dan Goosewin. Built with Next.js and TypeScript
https://github.com/goosewin/blog
blog entrepreneurship mdx nextjs software-development typescript
Last synced: about 1 month ago
JSON representation
Personal blog of Dan Goosewin. Built with Next.js and TypeScript
- Host: GitHub
- URL: https://github.com/goosewin/blog
- Owner: goosewin
- Created: 2024-10-17T21:42:52.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-03-21T18:45:24.000Z (2 months ago)
- Last Synced: 2025-04-10T05:08:34.860Z (about 1 month ago)
- Topics: blog, entrepreneurship, mdx, nextjs, software-development, typescript
- Language: TypeScript
- Homepage: https://goosewin.com
- Size: 1.96 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# goosewin.com
Welcome to the repository powering `goosewin.com`.
## Tech Stack
- [Next.js](https://nextjs.org/) - React framework for server-side rendering and static site generation
- [TypeScript](https://www.typescriptlang.org/) - Typed superset of JavaScript
- [Tailwind CSS](https://tailwindcss.com/) - Utility-first CSS framework
- [MDX](https://mdxjs.com/) - Markdown for the component era## Getting Started
1. Clone the repository:
```sh
git clone https://github.com/goosewin/blog.git
```2. Install dependencies:
```sh
bun install
```3. Run the development server:
```sh
bun dev
```## Environment Variables
This project uses environment variables for configuration:
- `GITHUB_TOKEN`: Your GitHub personal access token (required for fetching GitHub repositories)
You can copy the `.env.example` file and replace the values with your own:
```sh
cp .env.example .env.local
```Then edit `.env.local` and replace `your_github_token_here` with your actual GitHub token.
## Writing Blog Posts
Add new MDX files to the `posts/` directory. Each post should include metadata at the top:
```mdx
export const metadata = {
title: 'Your Post Title',
date: 'YYYY-MM-DD',
description: 'A brief description of your post',
};Your post content goes here...
```