An open API service indexing awesome lists of open source software.

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.

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
```