https://github.com/realcyguy/supashare
A supa simple file sharing website made with SvelteKit and Supabase Storage.
https://github.com/realcyguy/supashare
Last synced: 4 months ago
JSON representation
A supa simple file sharing website made with SvelteKit and Supabase Storage.
- Host: GitHub
- URL: https://github.com/realcyguy/supashare
- Owner: RealCyGuy
- License: mit
- Created: 2021-05-21T03:24:07.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-03-24T23:41:25.000Z (about 3 years ago)
- Last Synced: 2024-12-30T22:32:36.576Z (over 1 year ago)
- Language: Svelte
- Homepage: https://supashare.netlify.app
- Size: 174 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# supashare
A supa simple file sharing website made with SvelteKit and Supabase Storage.
Screenshot
[](https://supashare.netlify.app)
## Hosting on Netlify
Create a project on .
Then, create a storage bucket called `files` and set `INSERT` and `SELECT` policies to
```sql
(bucket_id = 'files':: text)
```
You can deploy to netlify with this button:
[](https://app.netlify.com/start/deploy?repository=https://github.com/RealCyGuy/supashare)
Fill out the variables with your supabase's url and public key.
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```