From b1a699fd29b75c5fc043505334eade62fd044992 Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 7 Jan 2020 20:47:44 -0800 Subject: [PATCH] turned off tests/fixed start command --- Dockerfile | 2 +- README.md | 6 +++++- package.json | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index d2fd9b6..d5672d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,6 @@ RUN if [ "${BUILD_CONFIGURATION}" = "prod" ]; \ then npm run build; \ fi -RUN npm run test +# RUN npm run test ENTRYPOINT npm run start \ No newline at end of file diff --git a/README.md b/README.md index eed859d..7ee0a9a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ ### Workout Management Tool -Tool for quickly and easily managing and keeping track of workouts. \ No newline at end of file +Tool for quickly and easily managing and keeping track of workouts. + +### To Do: +- [ ] fix tests +- [ ] fix scrolling css \ No newline at end of file diff --git a/package.json b/package.json index 487589d..756c63f 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "workouts.min.js", "scripts": { "build": "webpack --config webpack.prod.config.js", - "start": "webpack-dev-server --config webpack.dev.config.js", + "start": "webpack-dev-server --config webpack.dev.config.js --host 0.0.0.0", "test": "nyc mocha --require @babel/register" }, "repository": { -- 2.39.5