Everything you need to build a Svelte project, powered by sv.
If you're seeing this, you've probably already done this step. Congrats!
# create a new project in the current directory
npx sv create
# create a new project in my-app
npx sv create my-appOnce you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --openTo create a production version of your app:
npm run buildYou can preview the production build with npm run preview.
To deploy your app, you may need to install an adapter for your target environment.
https://icon-sets.iconify.design/
The application supports real-time updates using Supabase Realtime. When enabled, users will automatically see:
- New friend requests sent to them
- Friend request acceptances/rejections
- New friendships
- Status updates from friends
For real-time updates to work, you need to enable Realtime replication on the following tables in your Supabase dashboard:
- Go to your Supabase project dashboard
- Navigate to Database → Replication
- Enable replication (via Publication) for these tables:
friend_requestsfriendsprofiles
Alternatively, you can enable replication via SQL:
-- Enable replication for friend_requests table
ALTER PUBLICATION supabase_realtime ADD TABLE friend_requests;
-- Enable replication for friends table
ALTER PUBLICATION supabase_realtime ADD TABLE friends;
-- Enable replication for profiles table
ALTER PUBLICATION supabase_realtime ADD TABLE profiles;Note: Real-time subscriptions are optional. If Realtime is not enabled, the app will still function normally, but users will need to refresh the page to see updates.
- Emoji avatar
- Re-arrange / favorite system