From f5a8be5addafab3cb091ec47f242405b69715ea5 Mon Sep 17 00:00:00 2001 From: Mike Cao Date: Wed, 7 May 2025 23:30:09 -0700 Subject: [PATCH] Fixed README. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f67f585c..cf84d762 100644 --- a/README.md +++ b/README.md @@ -64,10 +64,10 @@ mysql://username:mypassword@localhost:3306/mydb ### Build the Application ```bash -npm build +npm run build ``` -*The build step will create tables in your database if you are installing for the first time. It will also create a login user with username **admin** and password **umami**.* +_The build step will create tables in your database if you are installing for the first time. It will also create a login user with username **admin** and password **umami**._ ### Start the Application @@ -75,7 +75,7 @@ npm build npm run 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.* +_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._ ---