Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/silentworks/lnkd
https://github.com/silentworks/lnkd
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/silentworks/lnkd
- Owner: silentworks
- Created: 2021-09-25T02:12:18.000Z (about 3 years ago)
- Default Branch: develop
- Last Pushed: 2022-06-22T09:21:16.000Z (over 2 years ago)
- Last Synced: 2024-05-01T23:48:07.543Z (6 months ago)
- Language: Svelte
- Size: 232 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lnkd
This is a SvelteKit, Tailwind and Supabase project. This project is a one link page website similar to that of linkedtree.
## Developing
Copy the `env.example` and name it `.env`
Edit the file and enter all the required variable values
```
VITE_PUBLIC_APP_LINK_URL=http://localhost:3000/
VITE_SUPABASE_URL=
VITE_SUPABASE_ANON_KEY=
SUPABASE_PRIVATE_KEY=
SUPABASE_JWT_SECRET=
DATABASE_URL=
```The "DATABASE_URL" can be found under **Settings/Database**
Once you've created a project and installed dependencies with `pnpm install`, start a development server:
```bash
pnpm run dev# or start the server and open the app in a new browser tab
pnpm run dev -- --open
```## Building
Before creating a production version of your app, install an [adapter](https://kit.svelte.dev/docs#adapters) for your target environment. Then:
```bash
pnpm run build
```> You can preview the built app with `pnpm run preview`, regardless of whether you installed an adapter. This should _not_ be used to serve your app in production.