Created
August 30, 2020 14:40
-
-
Save tobiasoberrauch/0617564513513148009a6358ae06563d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Technology | |
Angular | |
# Create new app | |
ng new frontend --directory=./frontend --interactive=false --routing=true --style=scss --packageManager=yarn | |
# Start app | |
yarn start | |
# Technology | |
Loopback | |
# Pre-conditions | |
npm i -g @loopback/cli | |
# Create new app | |
lb4 app --config '{ "name": "backend", "application": "backend", "outDir": "backend", "packageManager": "yarn", "yes": "true" }' | |
# Start app | |
yarn start | |
# Create datasource | |
lb4 datasource |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment