chore(ui): add justfile to simplify setup

This commit is contained in:
Pujit Mehrotra
2025-01-17 09:31:35 -05:00
parent c163998175
commit 5b2cbd670a
2 changed files with 10 additions and 0 deletions

9
unraid-ui/justfile Normal file
View File

@@ -0,0 +1,9 @@
default: list-commands
list-commands:
@just --list --justfile {{justfile()}} --list-heading $'\nMonorepo recipes:\n'
# Prepares the repo for development
setup:
npm install
npm run build

View File

@@ -5,5 +5,6 @@ default:
@just list-commands
setup:
just ../unraid-ui/setup
cp .env.example .env
npm install