Newer
Older
goodnight / README.md
Goodnight
=================

A small app to log the times, when I go to sleep or get out of bed.
It serves also as a training into progressive web apps.

# Dev

Install `typescript` and `tslint` globally, if you haven't aready.
```bash
npm install -g typescript tslint
```

Local dependencies:
```bash
npm install
```

## Build

Compile TypeScript to JavaScript.
```bash
tsc
```
Executing this in the application's root folder will apply the settings from `tsconfig.json`.

## Run

Run the application from the project's root folder.
```bash
node dist/app.js
```