diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1fcf58f..269894e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,7 +27,7 @@ jobs: - run: npm run build --if-present - name: Start server run: | - sudo NODE_ENV=$NODE_ENV LOCALHOST=$LOCALHOST LOCALHOSTV6=$LOCALHOSTV6 KEY=$KEY USER_TEST=$USER_TEST npm start & + sudo NODE_ENV=$NODE_ENV KEY=$KEY USER_TEST=$USER_TEST npm start & sleep 16 # Give server some time to start - name: Check if server is running run: | diff --git a/README.md b/README.md index 5f8b559..b33c937 100644 --- a/README.md +++ b/README.md @@ -100,5 +100,6 @@ This application is designed to be used with the [OSMAND+ mobile app]([url](http Due to a plugin called [Triprecording]([url](https://osmand.net/docs/user/plugins/trip-recording/)) Using the above link or by [clicking here](https://osmand.net/docs/user/plugins/trip-recording#recording-settings) more information can be found to setup webtracking or "online tracking" - - +## DEMO +At this point, there is no demo, but here is a screenshot: +![Demo LOREX, markers on a map in berlin, information about speed and distance on the right](https://raw.githubusercontent.com/Type-Style/LOREX/dev/demo.png) diff --git a/demo.png b/demo.png new file mode 100644 index 0000000..f012a3f Binary files /dev/null and b/demo.png differ diff --git a/src/app.ts b/src/app.ts index 20bc2df..a06be02 100644 --- a/src/app.ts +++ b/src/app.ts @@ -77,7 +77,7 @@ app.use(error.handler); // init server const server = app.listen(80, () => { - logger.log(`Server running //localhost:80, ENV: ${process.env.NODE_ENV}`, true); + logger.log(`Server running //localhost:80, NODE_ENV: ${process.env.NODE_ENV}`, true); }); // scheduled cleanup