Skip to content
This repository has been archived by the owner on Dec 9, 2020. It is now read-only.

alexmarmon/react-mobx-template

Repository files navigation

react-mobx-template

An application that combines:

Getting Started

vim creds.json
{
  "host": "localhost",
  "user": "mysql user",
  "password": "mysql password",
  "database": "template"
}

// in mysql
create database template;

mysql -u [user] -p template < /path/to/this/repo/src/api/template.sql

Run It

npm run dev

Run Lint

npm run lint
npm run lint-fix

Run Tests

npm run test

Build Production Files

npm run build

Serve Production Files

npm run production