https://github.com/egoist/hakka
ALPHA. A reddit-like online community (but less noisy).
https://github.com/egoist/hakka
Last synced: 11 months ago
JSON representation
ALPHA. A reddit-like online community (but less noisy).
- Host: GitHub
- URL: https://github.com/egoist/hakka
- Owner: egoist
- License: mit
- Created: 2020-12-16T10:27:27.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-25T13:56:45.000Z (about 4 years ago)
- Last Synced: 2025-03-29T04:43:20.342Z (11 months ago)
- Language: TypeScript
- Homepage: https://hakka.dev
- Size: 1.76 MB
- Stars: 93
- Watchers: 7
- Forks: 9
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-list - hakka - like online community (but less noisy). | egoist | 93 | (TypeScript)
README
## Running locally
1. Configure `.env` file
Copy `.env.example` to `.env` and change the values accordingly.
2. Install dependencies
```bash
yarn
```
This app also requires PostgreSQL and Redis, you can spin up two Docker containers, the easiest way is to use [doko](https://github.com/egoist/doko):
```bash
doko enable postgres
doko enable redis
```
3. Start server
```bash
yarn dev
```
After that, you might need to deploy migrations as well if you haven't done that before:
```bash
yarn migrate:deploy
```