Skip to content

Commit

Permalink
feat(login): local login
Browse files Browse the repository at this point in the history
- add tests
- add login action creators
- add welcome page component

[Starts #161290964]
  • Loading branch information
tersoo-atsen committed Dec 17, 2018
1 parent d683150 commit 7af8b79
Show file tree
Hide file tree
Showing 33 changed files with 629 additions and 407 deletions.
1 change: 1 addition & 0 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"@babel/preset-react"
],
"plugins": [
["@babel/transform-runtime"],
"@babel/plugin-proposal-class-properties",
["transform-object-rest-spread", { "useBuiltIns": true }],
["@babel/plugin-proposal-decorators", { "legacy": true }],
Expand Down
3 changes: 3 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"scripts": {
},
"env": {
"API_BASE_URL": {
"required": true
}
},
"formation": {
"web": {
Expand Down
3 changes: 3 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
const express = require('express');
const path = require('path');
const dotenv = require('dotenv');

dotenv.config();

const app = express();
const PORT = process.env.PORT || 3000;
Expand Down
Loading

0 comments on commit 7af8b79

Please sign in to comment.