mirror of
https://github.com/unraid/api.git
synced 2026-05-12 18:50:26 -05:00
f5724abffb
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Enhanced API capabilities with improved GraphQL interfaces for remote access, parity checks, notifications, and virtual machine controls. - Introduction of dynamic remote access settings and refined online status and service monitoring. - New `ParityCheckMutationsResolver` for managing parity check operations through GraphQL. - **Refactor** - Consolidated and renamed internal types and schema definitions to improve consistency and performance. - Removed deprecated legacy schemas to streamline the API. - Updated import paths for various types to reflect new module structures. - **Chore** - Updated environment configurations and test setups to support the new logging and configuration mechanisms. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
14 lines
841 B
Bash
14 lines
841 B
Bash
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
|
|
PATHS_PARITY_CHECKS=./dev/states/parity-checks.log
|
|
PORT=5000
|
|
NODE_ENV="test" |