https://github.com/nahom32/blockchain-voting-backend
Blockchain Voting Backend
https://github.com/nahom32/blockchain-voting-backend
Last synced: 6 months ago
JSON representation
Blockchain Voting Backend
- Host: GitHub
- URL: https://github.com/nahom32/blockchain-voting-backend
- Owner: Nahom32
- Created: 2023-12-08T04:46:29.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-08T13:56:12.000Z (over 1 year ago)
- Last Synced: 2024-06-08T15:15:25.930Z (over 1 year ago)
- Language: TypeScript
- Size: 595 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blockchain-Voting-Backend
Blockchain Voting BackendNote on the express-backend development
## Flow
```bash
cd express-backend
npm install
```## Prisma Notes
1 Define your models to the schema.prisma file
2 Run a migration to create database tables with Prisma Migrate
```bash
npx prisma migrate dev --name init
```