commit 19ca5720f864198febe4bf0549ad127222b069b8
parent dc7704011da9a0f4cb231117a8679966d44a199b
Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com>
Date: Sat, 24 Aug 2024 09:07:09 -0700
Update README.md
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
@@ -18,16 +18,19 @@ Try it out [here](https://ashermorgan.github.io/running-tools/).
## Setup
Install dependencies
+
```
npm install
```
Run development server
+
```
npm run dev
```
Run linter and tests
+
```
npm run lint
npm run test:unit
@@ -35,6 +38,7 @@ npm run test:e2e
```
Build for production
+
```
-npm run build
+VITE_API_DOMAIN=https://example.com BASE_URL=/running-tools/ npm run build
```