https://github.com/viewstools/viewstools-web-project
Views Tools web project scaffold
https://github.com/viewstools/viewstools-web-project
Last synced: 11 months ago
JSON representation
Views Tools web project scaffold
- Host: GitHub
- URL: https://github.com/viewstools/viewstools-web-project
- Owner: viewstools
- Created: 2018-09-13T09:33:38.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-30T17:27:21.000Z (about 7 years ago)
- Last Synced: 2025-04-04T08:29:02.223Z (about 1 year ago)
- Language: JavaScript
- Size: 425 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README-BUILD.md
Awesome Lists containing this project
README
_New to coding or need to setup your development environment? [Check out this
guide](https://github.com/viewstools/docs/blob/master/DevEnvironmentSetup.md)._
Install the dependencies in your app's folder. Open the terminal and run:
```
npm install
```
Now you're ready to build the app. Open a terminal and run:
```
npm run build
```
It will create a `build` folder containing your production-ready app.
That's what you should deploy next. If you don't have any deployment mechanisms,
you can try free services like [netlify](https://netlify.com) or [surge](https://surge.sh).
We've preconfigured Surge as a deployment mechanism for simplicity:
Install surge (you only need to do this once). Open the terminal and run:
```
npm install --global surge
```
Then any time you want to deploy your app, on your main project's folder, run:
```
npm run deploy
```