Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion api/.env.development
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ PATHS_LOGS_FILE=./dev/log/graphql-api.log
PATHS_CONNECT_STATUS_FILE_PATH=./dev/connectStatus.json # Connect plugin status file
PATHS_OIDC_JSON=./dev/configs/oidc.local.json
PATHS_LOCAL_SESSION_FILE=./dev/local-session
PATHS_DOCKER_TEMPLATES=./dev/docker-templates
ENVIRONMENT="development"
NODE_ENV="development"
PORT="3001"
Expand Down
1 change: 0 additions & 1 deletion api/.env.production
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ NODE_ENV="production"
PORT="/var/run/unraid-api.sock"
MOTHERSHIP_GRAPHQL_LINK="https://mothership.unraid.net/ws"
PATHS_CONFIG_MODULES="/boot/config/plugins/dynamix.my.servers/configs"
ENABLE_NEXT_DOCKER_RELEASE=true
1 change: 0 additions & 1 deletion api/.env.staging
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ NODE_ENV="production"
PORT="/var/run/unraid-api.sock"
MOTHERSHIP_GRAPHQL_LINK="https://staging.mothership.unraid.net/ws"
PATHS_CONFIG_MODULES="/boot/config/plugins/dynamix.my.servers/configs"
ENABLE_NEXT_DOCKER_RELEASE=true
2 changes: 1 addition & 1 deletion api/.eslintrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
ignores: ['src/graphql/generated/client/**/*', 'src/**/**/dummy-process.js', 'dist/**/*'],
ignores: ['src/graphql/generated/client/**/*', 'src/**/**/dummy-process.js'],
},
{
plugins: {
Expand Down
6 changes: 0 additions & 6 deletions api/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ deploy/*

!**/*.login.*

# Local Development Artifacts

# local api configs - don't need project-wide tracking
dev/connectStatus.json
dev/configs/*
Expand All @@ -98,7 +96,3 @@ dev/configs/oidc.local.json

# local api keys
dev/keys/*
# mock docker templates
dev/docker-templates
# ie unraid notifications
dev/notifications
1 change: 0 additions & 1 deletion api/.prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ src/unraid-api/unraid-file-modifier/modifications/__fixtures__/downloaded/*

# Generated Types
src/graphql/generated/client/*.ts
dist/
10 changes: 0 additions & 10 deletions api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,16 +75,6 @@ If you found this file you're likely a developer. If you'd like to know more abo

- Run `pnpm --filter @unraid/api i18n:extract` to scan the Nest.js source for translation helper usages and update `src/i18n/en.json` with any new keys. The extractor keeps existing translations intact and appends new keys with their English source text.

## Developer Documentation

For detailed information about specific features:

- [API Plugins](docs/developer/api-plugins.md) - Working with API plugins and workspace packages
- [Docker Feature](docs/developer/docker.md) - Container management, GraphQL API, and WebGUI integration
- [Feature Flags](docs/developer/feature-flags.md) - Conditionally enabling functionality
- [Repository Organization](docs/developer/repo-organization.md) - Codebase structure
- [Development Workflows](docs/developer/workflows.md) - Development processes

## License

Copyright Lime Technology Inc. All rights reserved.
2 changes: 1 addition & 1 deletion api/dev/configs/api.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.28.2",
"version": "4.27.2",
"extraOrigins": [],
"sandbox": true,
"ssoSubIds": [],
Expand Down
Loading
Loading