https://github.com/claireyurev/lofi-market
A JavaScript-based e-commerce media platform with auctioneering functionality.
https://github.com/claireyurev/lofi-market
auction-system e-commerce-platform javascript-framework
Last synced: 3 months ago
JSON representation
A JavaScript-based e-commerce media platform with auctioneering functionality.
- Host: GitHub
- URL: https://github.com/claireyurev/lofi-market
- Owner: ClaireYurev
- License: mit
- Created: 2024-07-21T09:35:34.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-22T19:40:29.000Z (10 months ago)
- Last Synced: 2025-02-14T13:15:13.472Z (4 months ago)
- Topics: auction-system, e-commerce-platform, javascript-framework
- Language: JavaScript
- Homepage:
- Size: 3.71 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lo-Fi Market / Online Store
## App Setup (localhost)
```
git clone https://github.com/ClaireYurev/lofi-market.gitcp .env.example .env
```You'll have to set up a Supabase account & Stripe account, then add all of the details into your .env file.
Once you've connected your application to Supabase. You'll also need to set up the Auth Providers:
Google [Google](https://cloud.google.com)
https://supabase.com/docs/guides/auth/social-login/auth-google
Now run the command to migrate your database tables and run your seed file.
```
npx prisma migrate dev --name initnpx prisma generate
npx prisma db seed
npm i
npm run dev
```