Shoryuken is Trello-like web app created with NextJS and TailwindCSS.
It has some features like:
You need to install these first on your machine:
You need to follow these steps to run this project on your machine:
git clone git@github.com:gattigaga/shoryuken.git
yarn
to install node_modules
.yarn
create or replace view public.users as select id, email, raw_user_meta_data from auth.users;
revoke all on public.users from anon, authenticated;
grant select on users to anon;
grant select on users to authenticated;
Setup to enable Google Authentication in Supabase with this guide.
Create .env.local
in root directory and fill it with supabase url and anon key you got from this page in Supabase.
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
yarn
.yarn dev
I create Shoryuken because I seek for a new frontend challenges and I think Trello is a good example. It has many interactivity features like drag and drop card, create a board, and etc.