An open API service indexing awesome lists of open source software.

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).

Awesome Lists containing this project

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
```