https://github.com/donejs/test-app
https://github.com/donejs/test-app
Last synced: 12 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 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-18T16:30:53.000Z (over 8 years ago)
- Last Synced: 2025-05-25T09:41:26.879Z (about 1 year ago)
- Language: JavaScript
- Size: 69.3 KB
- Stars: 0
- Watchers: 4
- 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
```