Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/e-jigsaw/blitz-sandbox
https://github.com/e-jigsaw/blitz-sandbox
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/e-jigsaw/blitz-sandbox
- Owner: e-jigsaw
- Created: 2020-05-15T21:01:44.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T06:01:19.000Z (about 2 years ago)
- Last Synced: 2024-10-28T16:43:50.630Z (3 months ago)
- Language: TypeScript
- Size: 1.86 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sandbox
## 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.