https://github.com/donejs/place-my-order
A restaurant menu ordering application. Built with DoneJS in ES6.
https://github.com/donejs/place-my-order
Last synced: about 1 month ago
JSON representation
A restaurant menu ordering application. Built with DoneJS in ES6.
- Host: GitHub
- URL: https://github.com/donejs/place-my-order
- Owner: donejs
- License: mit
- Created: 2015-04-28T18:50:34.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T13:36:00.000Z (over 2 years ago)
- Last Synced: 2025-03-29T01:41:20.470Z (about 2 months ago)
- Language: JavaScript
- Homepage: https://donejs.com/place-my-order.html
- Size: 956 KB
- Stars: 44
- Watchers: 26
- Forks: 18
- Open Issues: 15
-
Metadata Files:
- Readme: readme.md
- License: LICENSE.md
Awesome Lists containing this project
README
# place-my-order
A restaurant menu ordering application. Built in ES6 with DoneJS.
## Getting started
To install all dependencies, (e.g. after cloning it from a Git repository) run
```
npm install donejs -g
npm install
```### Docker
To develop with Docker, see the [Docker guide](./docker.md)
## Running tests
Tests can be run with
```
donejs test
```## Development mode
In one command-line tab/window, you’ll need to run
```
donejs api
```In another command-line tab/window, you can start development mode 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
```