mirror of
https://github.com/unraid/api.git
synced 2026-01-01 22:20:05 -06:00
Reverts unraid/api#1180 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Enhanced the repository setup process by separating configuration for backend and website modules. - Introduced a new web setup routine that automates environment initialization and dependency installation. - Expanded the development workflow with commands for live development, linting, type checking, and code generation. - **Chores** - Reorganized project scripts and dependency management for improved consistency. - Streamlined cleanup routines and refined configuration settings for staging environments. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
15 lines
259 B
Makefile
15 lines
259 B
Makefile
set fallback
|
|
|
|
default:
|
|
@just --list --justfile {{justfile()}} --list-heading $'\nWeb project recipes:\n'
|
|
@just list-commands
|
|
|
|
setup:
|
|
just ../unraid-ui/setup
|
|
cp .env.example .env
|
|
npm install
|
|
|
|
clean:
|
|
rm -rf .nuxt
|
|
rm -rf node_modules
|