michalmikolajczyk / viking-garage-frontend

VIKING GARAGE app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

viking-garage-frontend

VIKING GARAGE app

Build Status

Get teh codez

git clone git@github.com:michalmikolajczyk/viking-garage-frontend.git
cd viking-garage-frontend

Local Docker setup

  1. Make sure you have docker installed and running on your local machine.
  2. scripts/docker-setup-local.sh
  3. Access the app via your (i.e. the host's) localhost, port 3000

Local setup w/o Docker

scripts/setup.sh

Config

To run application you have to set env vars. Check app.json for required variables and default values. For local build you can create .env file in root directory with variables (for details check out dotenv)

Install

npm i

Starting the app

npm start

You can now access the app through your localhost, default port: 3000.

Deployment

Please look into Heroku Pipelines Docker - Travis CI - Github - Heroku Pipeline - Review - Development - Staging - Production

Logs

Application use debug (npm module) for logs on client & server side (checkout link for docs) To enable logs from the production server, set env var DEBUG=server To enable logs from the app on client side, set in a localStorage:

localStorage.setItem('debug', 'app:*')

To add logger to a new module:

import debug from 'debug';
const log = debug('app:NameOfModule');
log('goes to stdout with prefix "app:NameOfModule"');

About

VIKING GARAGE app

License:MIT License


Languages

Language:TypeScript 84.2%Language:CSS 10.6%Language:JavaScript 2.8%Language:HTML 2.2%Language:Shell 0.2%