(also known as xuatz bookmark organiser)
- go to https://www.pushbullet.com/#settings/clients
- for local development (and using default configs)
- name:
- website: http://localhost:3000
- redirect_uri: http://localhost:9000/auth/connect/pushbullet/callback
- allowed_origin: *
- get the
client_id
andclient_secret
- for local development (and using default configs)
- go to each of the projects,
packages/client
andpackages/server
and copy the.env_sample
into.env
cd packages/client
cp .env_sample .env
- replace the environment variables as required
- specifically, you need to replace
PUSHBULLET_APP_CLIENT_ID
andPUSHBULLET_APP_CLIENT_SECRET
with the values you got from
Create a Pushbullet client
above
- specifically, you need to replace
Currently I am only using docker to start and seed the mongodb for local development purposes
docker compose up -d
pnpm i
pnpm -F server run dev
The server can be found at http://localhost:9000
pnpm -F client run dev
The client can be found at http://localhost:3000