Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romaindoyen/proxibio-line
Short circuit between the producer and the consumer of the product.
https://github.com/romaindoyen/proxibio-line
appwrite-auth leaflet react supabase vitejs
Last synced: 2 months ago
JSON representation
Short circuit between the producer and the consumer of the product.
- Host: GitHub
- URL: https://github.com/romaindoyen/proxibio-line
- Owner: RomainDoyen
- Created: 2024-08-31T08:46:21.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-15T16:20:31.000Z (4 months ago)
- Last Synced: 2024-10-16T19:07:03.963Z (3 months ago)
- Topics: appwrite-auth, leaflet, react, supabase, vitejs
- Language: TypeScript
- Homepage:
- Size: 487 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ProxyBioLine
## Description
Short circuit between the producer and the consumer of the product. The producer can sell his products directly to the consumer without going through intermediaries. The consumer can buy the product directly from the producer.
## Install dependencies
```bash
yarn install
```## Config .env file
Create a `.env` file in the root of the project and add the following content:
### Appwrite API
```bash
VITE_APPWRITE_PROJECT_ID=
```### Supabase API
```bash
VITE_SUPABASE_URL=
VITE_SUPABASE_ANON_KEY=
```### Prisma
```bash
DATABASE_URL=
```
Run a migration to create your database tables with Prisma Migrate```bash
npx prisma migrate dev --name init
```
Generate Prisma Client```bash
npx prisma generate
```
## Run the project```bash
yarn dev
```