Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hosseinmirzapur/prisma
Prisma Go Client for Goravel
https://github.com/hosseinmirzapur/prisma
golang golang-package goravel laravel orm orm-library
Last synced: 12 days ago
JSON representation
Prisma Go Client for Goravel
- Host: GitHub
- URL: https://github.com/hosseinmirzapur/prisma
- Owner: hosseinmirzapur
- Created: 2024-01-05T14:23:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-03T12:07:35.000Z (8 months ago)
- Last Synced: 2024-05-03T16:20:51.071Z (8 months ago)
- Topics: golang, golang-package, goravel, laravel, orm, orm-library
- Language: Go
- Homepage: https://goravel.dev
- Size: 89.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Prisma Client with Go
Special thanks to [Luca Steeb](https://github.com/steebchen), for developing an elegant package.
This package is dedicated to [Goravel](https://github.com/goravel/goravel) as an extend package.
## Version
| hosseinmirzapur/prisma | goravel/framework |
|-------------|-------------------|
| v1.1.x | v1.13.x |## Install
1. Add package:
```bash
go get github.com/hosseinmirzapur/prisma
```2. Register Service Provider:
```
// config/app.go
import "github.com/hosseinmirzapur/prisma""providers": []foundation.ServiceProvider{
...
&prisma.ServiceProvider{},
}
```3. See artisan list
```bash
go run . artisan list
go run . artisan prisma:version
```## Info on Commands
Be sure to check [Prisma Client with Go](https://github.com/steebchen/prisma-client-go), as there are more information there as well.