Git Product home page Git Product logo

happenings's Introduction

Happenings

Happenings is an open-source application to create and showcase your timeline of achievements.

Happenings - Create and share your timeline of achievements✨ | Product Hunt

Tech Stack

Record & Share your journey

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.

DB Schema

image

Setup Guide

  • Create a new project on Supabase
  • Navigate to SQL editor and execute the below SQL statement (This creates the required tables)
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
);

  • Navigate to Storage and create a new public bucket named event-images
  • Grab your project URL and public anon key from Project Settings -> API
  • Create a new file .env in the root directory of the project and add the Project URL and Public Anon Key to this file (Refer .env.sample file)
  • Configure google auth by following Supabase google auth docs
  • That's it. You are good to go. Start your app with npm start

Support

Please feel free to join Discord and clarify things.

Contributors

happenings's People

Contributors

s-ashwin avatar ja3090 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.