happenings
1.0.0
Happenings is an open-source application to create and showcase your timeline of achievements.
Happenings was built on a weekend with an idea of documenting your journey. You can create a timeline and either keep it private to yourself or generate a public url for you to showcase your achievments / journey.

create table user_config (
id bigint not null primary key,
created_at timestamp default now(),
user_id uuid default uuid_generate_v4(),
url character not null,
is_public boolean not null,
display_name character not null
);
create table timeline (
event_id bigint not null primary key,
created_at timestamp default now(),
user_id uuid default uuid_generate_v4(),
title character,
description text,
date date default now(),
image_url text
);
event-images.env in the root directory of the project and add the Project URL and Public Anon Key to this file (Refer .env.sample file)npm startPlease feel free to join Discord and clarify things.