Skip to content

Latest commit

 

History

History
60 lines (38 loc) · 1.86 KB

File metadata and controls

60 lines (38 loc) · 1.86 KB

Epocha

A web application for converting unix epoch timestamps to dates and vice-versa. It supports a live mode to get the current epoch timestamp. It also supports pasting your own timestampt to get the date value in whatever timezone you choose. It also supports adding multiple converters. This helps when comparing two or more timestamps for different values like a start and end date.

The project will store your state on local storage so that you can come back to the previous timestamps you were using.

You can see the project in action at epocha.io

Prerequisites

You will need the following things properly installed on your computer.

Installation

  • git clone <repository-url> this repository
  • cd epocha
  • npm install

Running / Development

Code Generators

Make use of the many generators for code, try ember help generate for more details

Running Tests

  • ember test
  • ember test --server

Linting

  • npm run lint:hbs
  • npm run lint:js
  • npm run lint:js -- --fix

Building

  • ember build (development)
  • ember build --environment production (production)

Deploying

Specify what it takes to deploy your app.

Further Reading / Useful Links