Back to Blog

The Power of ExamCard's Micro-Lessons

ExamCard is exam-preparation tool. It's great for quickly clarifying areas of confusion in learners and turning weak areas into strengths in students. This is present throughout the entire app!

Posted by

Supabase and ShipFast logo combined

Introduction

Exam Card is a great source for Revision Micro-Lessons, all available in the examcard app for your next study session. Micro-lessons are concise, focused learning units designed to deliver specific information efficiently. In the context of exam preparation, they offer several benefits

1. Improved Focus and Retention

First, go to Supabase and create an account. It's free for up to 10,000 rows per table.
Then create a new project and a new table. You can use the following SQL schema:

CREATE TABLE public.users (
  id bigint NOT NULL DEFAULT nextval('users_id_seq'::regclass),
  email text NOT NULL,
  password text NOT NULL,
  created_at timestamp with time zone NOT NULL DEFAULT now(),
  updated_at timestamp with time zone NOT NULL DEFAULT now(),
  CONSTRAINT users_pkey PRIMARY KEY (id)
);

2. Add your credentials to ShipFast

Copy the API URL and API Key from your Supabase project settings and add them to your ShipFast project settings. Add these files to your project:

  • .env.local
  • .env.production