aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
blob: 48ed6c4233c2f736d61262c1d0e17d4fe1337cc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# feedaka

A simple RSS/Atom feed reader. This is my personal project and is developed for my use only.

> [!NOTE]
> Built with AI & Vibe Coding - This project is developed through collaborative coding with AI assistants.

## Requirements

* Go 1.24+
* Node.js 22+
* Docker and Docker Compose
* [Just](https://github.com/casey/just)

## Run

### Docker

```bash
$ docker compose up
```

Access at <http://localhost:8002>.

### Non-docker

```bash
$ just build
$ cd frontend && npm run dev &
$ cd .. && just serve
```