Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flybayer/temp-auth-example
https://github.com/flybayer/temp-auth-example
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/flybayer/temp-auth-example
- Owner: flybayer
- Created: 2020-07-22T09:48:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-07-22T10:47:46.000Z (over 4 years ago)
- Last Synced: 2024-12-10T19:53:04.822Z (about 1 month ago)
- Language: TypeScript
- Size: 49.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# auth
## Getting Started
1. Add this code to db/schema.prisma:
```
model Project {
id Int @default(autoincrement()) @id
name String
}
```2. DB migrate
```
blitz db migrate
```3. Start the dev server
```
blitz start
```Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.