Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/endlessreform/site
Current source code for my personal website
https://github.com/endlessreform/site
nextjs react tailwind
Last synced: about 6 hours ago
JSON representation
Current source code for my personal website
- Host: GitHub
- URL: https://github.com/endlessreform/site
- Owner: EndlessReform
- Created: 2022-03-27T07:30:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-14T05:22:52.000Z (11 months ago)
- Last Synced: 2023-12-15T05:40:53.123Z (11 months ago)
- Topics: nextjs, react, tailwind
- Language: TypeScript
- Homepage: https://www.keisling.me
- Size: 17.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jacob Keisling's personal website
## Architecture
This is a [Next.js 14](https://nextjs.org) site, using server components.
It's currently deployed using Vercel. (Yes, they got me, for now.)## Local development
### Installation
At the root, install packages:
```bash
# NVM prefered
nvm use 20
npm i
```### Usage
Use the standard Next.js commands:
```bash
# Start server
npm run dev# Build for production
npm run build
# Serve
npm run start
```