Skip to content

novatorem/rez

Repository files navigation

sv

Everything you need to build a Svelte project, powered by sv.

Creating a project

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-app

Developing

Once 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 -- --open

Building

To create a production version of your app:

npm run build

You 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/

Real-time Updates

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

Enabling Supabase Realtime

For real-time updates to work, you need to enable Realtime replication on the following tables in your Supabase dashboard:

  1. Go to your Supabase project dashboard
  2. Navigate to DatabaseReplication
  3. Enable replication (via Publication) for these tables:
    • friend_requests
    • friends
    • profiles

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.

TODO

  • Emoji avatar
  • Re-arrange / favorite system

About

A simple check-in system, for peace of mind

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published