https://github.com/colbywhite/planner
https://github.com/colbywhite/planner
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/colbywhite/planner
- Owner: colbywhite
- Created: 2024-05-24T03:37:33.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-11T22:06:50.000Z (10 months ago)
- Last Synced: 2025-01-30T00:33:46.206Z (5 months ago)
- Language: TypeScript
- Size: 261 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# planner
[AHA stack](https://ahastack.dev/) web app
# local dev
```shell
yarn dev
```## setup
If using supabase locally, `supabase start` (or `supabase status`) will output the url and key.
```
API URL: http://127.0.0.1:54321
anon key: a.long.jwt
```This would mean the following local env variables need to be set for local dev.
```dotenv
PUBLIC_DB_URL=http://localhost:54321
PUBLIC_DB_KEY=a.long.jwt
```For local auth use a dev [GitHub app](https://github.com/settings/developers) and save credentials in env variables.
```dotenv
SUPABASE_AUTH_GITHUB_CLIENT_ID=A_GITHUB_APP_FOR_DEV
SUPABASE_AUTH_GITHUB_SECRET=A_GITHUB_SECRET_FOR_DEV
```