https://github.com/ianhomer/try-loopback
Explore Loopback - a Node.js API framework
https://github.com/ianhomer/try-loopback
explore loopback
Last synced: 3 months ago
JSON representation
Explore Loopback - a Node.js API framework
- Host: GitHub
- URL: https://github.com/ianhomer/try-loopback
- Owner: ianhomer
- Created: 2019-09-04T12:18:11.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T08:54:25.000Z (over 2 years ago)
- Last Synced: 2025-04-08T09:52:46.256Z (6 months ago)
- Topics: explore, loopback
- Language: TypeScript
- Homepage:
- Size: 1000 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# try-loopback
## tl;dr
npm install
npm test
npm build## Database migrations
Auto-update / auto-migrate modes based on data model, however auto-update comes
with the warning "Auto-update will attempt to preserve data while updating the
schema in your target database, but this is not
guaranteed to be safe.".- https://loopback.io/doc/en/lb4/Database-migrations.html
Now I can see this auto-migration happening locally, but I wouldn't trust that
approach in a production environment. I can't see a way with loopback to
generate migration scripts from model and then have tight control of the
migration generated.