Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flybayer/blitz-on-render
Blitz.js app deployed to Render.com
https://github.com/flybayer/blitz-on-render
Last synced: 10 days ago
JSON representation
Blitz.js app deployed to Render.com
- Host: GitHub
- URL: https://github.com/flybayer/blitz-on-render
- Owner: flybayer
- Created: 2020-05-16T09:26:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T06:03:27.000Z (almost 2 years ago)
- Last Synced: 2024-10-26T14:17:44.612Z (about 2 months ago)
- Language: TypeScript
- Size: 1.86 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# blitz-on-render
## 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.