https://github.com/aelithron/novatea
Nova's personal website and blog!
https://github.com/aelithron/novatea
blog nextjs no-ai personal personal-site
Last synced: about 1 month ago
JSON representation
Nova's personal website and blog!
- Host: GitHub
- URL: https://github.com/aelithron/novatea
- Owner: aelithron
- Created: 2025-12-15T19:43:14.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2026-01-26T03:15:00.000Z (6 months ago)
- Last Synced: 2026-05-28T00:28:06.162Z (about 2 months ago)
- Topics: blog, nextjs, no-ai, personal, personal-site
- Language: TypeScript
- Homepage: https://novatea.dev
- Size: 690 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# novatea 
Nova's personal website and blog! Made for Hack Club [Flavortown](https://flavortown.hackclub.com)! \
## Features
- Dynamic widgets
- A fully-featured custom blog, including an RSS feed
- Also features full Markdown support!
- A portfolio of my projects
- Pages talking about myself and my accounts
- Full admin panel for changing blog posts and projects
- More cool things! :3
## Usage
Using this is quite simple! Just go to [novatea.dev](https://novatea.dev) in any web browser!
### Self-Hosting
I have no clue why you want to self-host my website, but ok! I suggest running it in Docker.
1. Set up environment variables:
- `DATABASE_URL`: A valid PostgreSQL connection string, in the format of `postgres://:@:/`.
- `ADMIN_TOKEN`: Any text, but I would suggest picking a secure password. This will allow anyone who knows it to read/publish/edit/delete blog posts and projects.
2. Apply database migrations. This essentially just creates the tables that the site needs to work. I'm not really sure how to describe how to do this, but you essentially just need to clone the source code and run `npx drizzle-kit push`. Figure it out, I guess :3
3. Deploy the one of the following Docker configs.
**Make sure to fill in the environment variables!**
#### Docker Compose
```yaml
services:
novatea:
image: ghcr.io/aelithron/novatea:latest
container_name: novatea
restart: unless-stopped
environment:
DATABASE_URL: ""
ADMIN_TOKEN: ""
ports:
- 3000:3000
```
#### `docker run` Command
```bash
docker run -d \
--name novatea \
-p 3000:3000 \
-e DATABASE_URL="" \
-e ADMIN_TOKEN="" \
--restart unless-stopped \
ghcr.io/aelithron/novatea:latest
```
## Credits
I was inspired by some other personal sites :3 \
Here's some links (these are the main ones I was inspired by, bold ones are my friends):
- **https://parkalex.dev**
- **https://shymike.dev**
- https://kibty.town
- https://lily.pet
I also used Font Awesome icons throughout the app!