mirror of
https://github.com/unraid/api.git
synced 2026-01-06 08:39:54 -06:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit • New Features - Enhanced the login experience with improved session management and two-factor authentication. - Introduced a comprehensive README for the Unraid Plugin Builder, detailing development workflows and commands. • Chores - Streamlined build, packaging, and deployment processes with updated dependency and environment configurations. - Updated Docker configurations to support pnpm as the package manager. - Added new environment variables for better configuration management. - Introduced new scripts for improved build and packaging processes. • Tests - Removed outdated test cases and simplified test setups. • Refactor - Modernized internal code structure and asynchronous handling for improved overall performance. - Transitioned imports from lodash to lodash-es for better module handling. - Updated environment variable management and configuration settings. - Enhanced the build script for improved deployment processes. - Updated the notification handling structure to improve efficiency. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
13 lines
790 B
Plaintext
13 lines
790 B
Plaintext
PATHS_UNRAID_DATA=./dev/data # Where we store plugin data (e.g. permissions.json)
|
|
PATHS_STATES=./dev/states # Where .ini files live (e.g. vars.ini)
|
|
PATHS_AUTH_SESSIONS=./dev/sessions # Where user sessions live
|
|
PATHS_AUTH_KEY=./dev/keys # Auth key directory
|
|
PATHS_DYNAMIX_BASE=./dev/dynamix # Dynamix's data directory
|
|
PATHS_DYNAMIX_CONFIG_DEFAULT=./dev/dynamix/default.cfg # Dynamix's default config file, which ships with unraid
|
|
PATHS_DYNAMIX_CONFIG=./dev/dynamix/dynamix.cfg # Dynamix's config file
|
|
PATHS_MY_SERVERS_CONFIG=./dev/Unraid.net/myservers.cfg # My servers config file
|
|
PATHS_MY_SERVERS_FB=./dev/Unraid.net/fb_keepalive # My servers flashbackup timekeeper file
|
|
PATHS_KEYFILE_BASE=./dev/Unraid.net # Keyfile location
|
|
PATHS_MACHINE_ID=./dev/data/machine-id
|
|
PORT=5000
|
|
NODE_ENV="test" |