A modern web application built with React, Vite, and Supabase, featuring Google Authentication and user profile management with FRAN token system.
- Google OAuth Authentication
- User Profile Management
- FRAN Token System
- Real-time Data Updates
- Responsive Design with Tailwind CSS
- Secure Data Management with Supabase
-
Frontend:
- React
- Vite
- Tailwind CSS
- React Router
-
Backend:
- Supabase (PostgreSQL)
- Google OAuth
Before you begin, ensure you have the following installed:
- Node.js (v16 or higher)
- npm (v7 or higher)
- A Supabase account
- A Google Cloud Console account (for OAuth)
Create a .env
file in the root directory with the following variables:
VITE_SUPABASE_URL=your_supabase_url
VITE_SUPABASE_ANON_KEY=your_supabase_anon_key
- Clone the repository:
git clone <repository-url>
cd <project-directory>
- Install dependencies:
npm install
- Start the development server:
npm run dev
my-app/
├── src/
│ ├── components/
│ │ ├── Navbar.jsx
│ │ ├── Profile.jsx
│ │ └── ui/
│ ├── lib/
│ │ └── supabaseClient.js
│ ├── App.jsx
│ ├── main.jsx
│ └── index.css
├── public/
├── .env
├── package.json
├── vite.config.js
└── tailwind.config.js
create table "Users" (
id uuid references auth.users(id),
username text,
fran_tokens bigint default 500,
avatar_url text,
biography text,
location text,
website text,
created_at timestamp with time zone default timezone('utc'::text, now()),
updated_at timestamp with time zone default timezone('utc'::text, now()),
primary key (id)
);
- Create a new Supabase project
- Set up Google OAuth:
- Configure OAuth in Google Cloud Console
- Add credentials to Supabase Auth settings
- Enable Row Level Security (RLS)
- Set up database triggers for new users
- Build the project:
npm run build
- Deploy using your preferred hosting service (e.g., Vercel, Netlify)
npm run dev
- Start development servernpm run build
- Build for productionnpm run preview
- Preview production build locally
- Row Level Security (RLS) enabled
- Secure authentication flow
- Environment variables for sensitive data
- Protected API routes
The application is fully responsive and optimized for:
- Desktop
- Tablet
- Mobile devices
Using Tailwind CSS with custom configuration:
- Custom color scheme
- Responsive utilities
- Custom components
- Dark mode support
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details
- Supabase for the amazing backend service
- Tailwind CSS for the utility-first CSS framework
- Vite for the blazing fast build tool
- React for the awesome frontend library
Your Name - [email protected]
Project Link: https://github.com/yourusername/project-name
- Add user search functionality
- Implement token transfer system
- Add user activity tracking
- Enhance profile customization options
- Add social features