Weight Manager

Overview

Easy weight management application. Manage daily weight changes while looking at graph. Record the date and the weight of the day.

Technology

  • front_end
    • React
    • material-UI
  • back_end
    • firebase

URL

Figure

https://raw.githubusercontent.com/taiseiyo/manage-weight/master/pic/operation.png

Warning

When editing with emacs

node_modules/react-scripts/config/webpackDevServer.config.js

Please edit.

  • before
watchOptions: {
ignored: ignoredFiles(paths.appSrc),
},	
  • after
watchOptions: {
ignored: [ignoredFiles(paths.appSrc), "**/.#*", "**/*~", "**/#*#"],
},

Firebase Configuration

{
  "hosting": {
    "public": "build",
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**",
      "pic/*"
    ],
    "rewrites": [
      {
        "source": "**",
        "destination": "/index.html"
      }
    ]
  }
}