https://github.com/donejs/test-app
https://github.com/donejs/test-app
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/donejs/test-app
- Owner: donejs
- License: mit
- Created: 2017-09-18T15:52:23.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-18T16:30:53.000Z (over 7 years ago)
- Last Synced: 2024-12-31T22:28:54.826Z (5 months ago)
- Language: JavaScript
- Size: 69.3 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# test-app
Welcome to the test-app DoneJS application!
## Getting started
To install all dependencies, (e.g. after cloning it from a Git repository) run
```
npm install donejs -g
npm install
```## Running tests
Tests can be run with
```
donejs test
```## Development mode
Development mode can be started with
```
donejs develop
```## Build and production mode
To build the application into a production bundle run
```
donejs build
```In Unix environment the production application can be started like this:
```
NODE_ENV=production npm start
```