Skip to content

Latest commit

 

History

History
 
 

README.md

Zeppliear

A test-bed app for Zero based on Repliear a Replicache based high-performance issue tracker in the style of Linear.

Built with Zero and Vite,).

Running at zeppliear.vercel.app.

To run wrangler worker locally

update .dev.vars URIs to point to your internal ip address (169..._ or 192..._) do not use the 127.0.0.1 address

UPSTREAM_URI = "postgresql://user:password@add.your.host.ip:6432/postgres"
SYNC_REPLICA_URI = "postgres://user:password@add.your.host.ip:6433/postgres"

Open two windows one with docker-compose and the other wrangler:

cd docker && docker-compose up
npx wrangler dev --ip 0.0.0.0

To run web locally

npm install
VITE_PUBLIC_SERVER='http://localhost:8787' npm run dev

To reset clear local postgres dbs and docker volumes

docker-compose down
docker volume rm -f docker_pgdata_sync
docker volume rm -f docker_pgdata_upstream

Credits

We started this project by forking linear_clone. This enabled us to get the visual styling right much faster than we otherwise could have.