Skip to content

Commit be3972b

Browse files
committed
Removed yarn references.
1 parent d44be46 commit be3972b

2 files changed

Lines changed: 5 additions & 11045 deletions

File tree

README.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,12 @@ A detailed getting started guide can be found at [umami.is/docs](https://umami.i
3838
- A server with Node.js version 18.18 or newer
3939
- A database. Umami supports [MariaDB](https://www.mariadb.org/) (minimum v10.5), [MySQL](https://www.mysql.com/) (minimum v8.0) and [PostgreSQL](https://www.postgresql.org/) (minimum v12.14) databases.
4040

41-
### Install Yarn
42-
43-
```bash
44-
npm install -g yarn
45-
```
46-
4741
### Get the Source Code and Install Packages
4842

4943
```bash
5044
git clone https://github.com/umami-software/umami.git
5145
cd umami
52-
yarn install
46+
npm install
5347
```
5448

5549
### Configure Umami
@@ -70,15 +64,15 @@ mysql://username:mypassword@localhost:3306/mydb
7064
### Build the Application
7165

7266
```bash
73-
yarn build
67+
npm build
7468
```
7569

7670
*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**.*
7771

7872
### Start the Application
7973

8074
```bash
81-
yarn start
75+
npm run start
8276
```
8377

8478
*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.*
@@ -113,8 +107,8 @@ To get the latest features, simply do a pull, install any new dependencies, and
113107

114108
```bash
115109
git pull
116-
yarn install
117-
yarn build
110+
npm install
111+
npm run build
118112
```
119113

120114
To update the Docker image, simply pull the new images and rebuild:

0 commit comments

Comments
 (0)