From e1b3e98ac4c64cc1a7c9bcb3ac6ed27602d12952 Mon Sep 17 00:00:00 2001 From: bosskopp <1733427+bosskopp@users.noreply.github.com> Date: Thu, 1 Oct 2020 11:18:18 +0200 Subject: [PATCH] Update README.md closes #236 by adding hint to Readme.txt --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 397dcdbf..c37d5875 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ npm start By default this will launch the application on `http://localhost:3000`. You will need to either [proxy](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/) requests from your web server -or change the [port](https://nextjs.org/docs/api-reference/cli#production) to serve the application directly. +or change the [port](https://nextjs.org/docs/api-reference/cli#production) to serve the application directly, e.g. `npm start -- --port 8080`. ## Installing with Docker @@ -97,9 +97,11 @@ docker pull ghcr.io/mikecao/umami:mysql-latest To get the latest features, simply do a pull, install any new dependencies, and rebuild: ```bash +npm stop git pull npm install npm run build +npm start ``` ## License