Created
October 10, 2019 15:31
-
-
Save brianleroux/9fc2bcb29f96a29022ac918385727f1e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
add arc locally | |
```bash | |
npm init -f | |
npm i @architect/architect | |
``` | |
edit `package.json` with a startup script | |
``` | |
{ | |
"name": "arc-static", | |
"scripts": { | |
"start": "npx arc sandbox" | |
}, | |
"dependencies": { | |
"@architect/architect": "^6.0.13" | |
} | |
} | |
``` | |
run `npm start` and it _should_ work |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can architect be a dev-dependency, or is it required to be a "proper" dependency for Architect to deploy etc.?