Checkpoint is an open-source platform that make it possible for you to share your experience with various games. Our main purpose is to unite the community to build an indie project that represents one of our favorite activities: gaming.
Checkpoint have some must-have features, here they are:
- Integration of a game database in order to list and display as many games as possbile
- Retrieve public information about those games (to bring up what real gamers think about those games) -- this item could possibly be resolved with some youtube gameplay scrapping
- Retrieve the total amount of the game tasks, so the gamers could mark at what task or campaign they are at this moment and Checkpoint will calculate how many hours or percentage of the game are pending until the campaing is fully completed.
- Timeline: this feature will make Checkpoint look like a real social media. The timeline must have news about the games publishers or show what games the user friends are playing at this moment.
Checkpoint must be a simple app, so, its stack will be composed by:
- NextJs 14
- Tailwind
- Supabase
- Next UI
- Shadcn
- Vercel
To install checkpoint you must follow some steps:
Start cloning the project by using the command:
git clone https://github.com/igorfelipeduca/checkpoint
This project was created using bun, so, you must use the command bellow to install this project dependencies:
bun install
Don't you have bun installed? Click here
To clone this project and self-host at vercel, you must click at the button below and clone this project in your Vercel personal account.
First you must create your supabase project and set up the databases below:
create table
public.users (
id bigint generated by default as identity,
created_at timestamp with time zone not null default now(),
name text null,
email text null,
avatar text null,
constraint users_pkey primary key (id)
) tablespace pg_default;
Pick up your SUPABASE_URL
and SUPABASE_ANON_KEY
to fill out the .env
file.
In order to generate your RAWG api key, visit the RAWG website and click to generate your API key. Create your account and then fill out the RAWG_API_KEY
at your .env
file.