PathwayAid is a web application designed to help students find personalized scholarships and financial aid opportunities. By providing details such as academic interests and background, students can be matched with scholarships that fit their unique profile.
This guide will help you set up the project locally.
- Supabase CLI installed
- A Supabase account
- Node.js and package manager (npm or yarn)
This project uses Supabase's PostgreSQL database for storing application data.
While this setup is optional, it's strongly recommended as it simplifies local development.
To start, initialize the Supabase project in your local environment:
supabase init
Authenticate the Supabase CLI with your account by logging in:
supabase login
Link your local environment to your Supabase project using your project reference. Replace <project-ref>
with your actual project reference ID, which you can find in the Supabase dashboard:
supabase link --project-ref <project-ref>
To synchronize your local environment with the latest schema and data changes from your deployed Supabase instance, use:
supabase db pull
If you encounter issues during the setup process, refer to the official Supabase troubleshooting guide for common solutions.