https://github.com/rocicorp/repliear
https://github.com/rocicorp/repliear
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rocicorp/repliear
- Owner: rocicorp
- License: apache-2.0
- Created: 2022-03-20T22:42:23.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-09T22:18:52.000Z (7 months ago)
- Last Synced: 2025-05-24T15:17:54.363Z (about 2 months ago)
- Language: TypeScript
- Homepage: https://repliear.herokuapp.com
- Size: 65.8 MB
- Stars: 174
- Watchers: 7
- Forks: 15
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Repliear
A high-performance issue tracker in the style of [Linear](https://linear.app/).
Built with [Replicache](https://replicache.dev), [Next.js](https://nextjs.org/),
[Pusher](https://pusher.com/), and [Postgres](https://www.postgresql.org/).Running at [repliear.herokuapp.com](https://repliear.herokuapp.com/).
# Prerequisites
1. [Get a Replicache license key](https://doc.replicache.dev/licensing)
2. Install PostgreSQL. On MacOS, we recommend using [Postgres.app](https://postgresapp.com/). For other OSes and options, see [Postgres Downloads](https://www.postgresql.org/download/).
3. [Sign up for a free pusher.com account](https://pusher.com/) and create a new "channels" app.# To run locally
Get the Pusher environment variables from the ["App Keys" section](https://i.imgur.com/7DNmTKZ.png) of the Pusher App UI.
**Note:** These instructions assume you installed PostgreSQL via Postgres.app on MacOS. If you installed some other way, or configured PostgreSQL specially, you may additionally need to set the `PGUSER` and `PGPASSWORD` environment variables.
```
export PGDATABASE="repliear"
export NEXT_PUBLIC_REPLICACHE_LICENSE_KEY=""
export NEXT_PUBLIC_PUSHER_APP_ID=
export NEXT_PUBLIC_PUSHER_KEY=
export NEXT_PUBLIC_PUSHER_SECRET=
export NEXT_PUBLIC_PUSHER_CLUSTER=# Create a new database for Repliear
psql -d postgres -c 'create database repliear'npm install
npm run dev
```## Credits
We started this project by forking [linear_clone](https://github.com/tuan3w/linearapp_clone). This enabled us to get the visual styling right much faster than we otherwise could have.