No description
  • NSIS 55.4%
  • TypeScript 31.8%
  • Rust 5.8%
  • CSS 4.3%
  • HTML 1.2%
  • Other 1.4%
Find a file
Serjik 03b12d9a23
Some checks failed
Build and Release / Create Release (push) Failing after 0s
Build and Release / Build (linux/amd64) (push) Has been skipped
Build and Release / Build (windows/amd64) (push) Has been skipped
Build and Release / Publish Updater JSON (push) Has been skipped
chore: update pnpm workspace configuration to include package definitions
2026-06-01 21:17:25 +03:00
.claude feat: implement interactive random media picker modal with re-roll functionality and configurable filters 2026-04-15 23:40:12 +03:00
.forgejo/workflows Fix release workflow to upload only current build artifacts 2026-04-29 18:08:54 +03:00
k8s feat: initialize Tauri project structure with parser and TMDB modules 2026-04-14 10:22:38 +03:00
nsis-3.11 feat: add application icons and configure local Claude development settings 2026-04-12 18:51:00 +03:00
public feat: add application icons and configure local Claude development settings 2026-04-12 18:51:00 +03:00
scripts Fix encoding corruption in client strings 2026-05-01 17:29:17 +03:00
src feat: add admin panel for user management and statistics 2026-06-01 20:54:36 +03:00
src-tauri Polish macOS UI and media detail views 2026-05-31 15:19:35 +03:00
test_cp/A feat: add Forgejo CI/CD pipeline for automated build and release management 2026-04-12 19:59:29 +03:00
.dockerignore fix: commit Cargo.lock, add .dockerignore, fix layer caching 2026-03-23 13:23:23 +03:00
.editorconfig Fix encoding corruption in client strings 2026-05-01 17:29:17 +03:00
.gitignore feat: implement Netflix-inspired cinematic theme and CSS layout utilities 2026-04-26 18:33:49 +03:00
AGENTS.md Refactor button styles in HomePage to use CSS variables for consistency; add MLV Desktop codebase guide documentation 2026-05-30 12:58:00 +03:00
BUILD_MACOS.md feat: enhance macOS build process and add platform-specific UI adjustments 2026-05-26 19:33:07 +03:00
Dockerfile feat: Implement Forgejo CI/CD workflow for building and releasing multi-architecture desktop applications using Docker and Tauri signing. 2026-03-25 17:19:12 +03:00
Dockerfile.aarch64 feat: Implement Forgejo CI/CD workflow for building and releasing multi-architecture desktop applications using Docker and Tauri signing. 2026-03-25 17:19:12 +03:00
Dockerfile.base feat: Add Kubernetes deployment and automated provisioning for a Windows Forgejo CI runner. 2026-03-25 12:34:14 +03:00
Dockerfile.windows feat: implement torrent engine with librqbit and add Watchlist UI with streaming support 2026-03-29 19:04:54 +03:00
Dockerfile.windows-base feat: implement torrent engine with librqbit and add Watchlist UI with streaming support 2026-03-29 19:04:54 +03:00
eslint.config.js feat: implement profile page, settings commands, and media controls while refining ESLint rules 2026-04-25 14:34:24 +03:00
index.html feat: Generated various build artifacts and dependency caches for the Rust Tauri application. 2026-03-20 17:14:26 +03:00
nsis.zip feat: add application icons and configure local Claude development settings 2026-04-12 18:51:00 +03:00
package-lock.json feat: initialize Tauri project structure with parser and TMDB modules 2026-04-14 10:22:38 +03:00
package.json feat: enhance macOS build process and add platform-specific UI adjustments 2026-05-26 19:33:07 +03:00
pnpm-lock.yaml refactor: remove unused Tauri plugins and update dependencies 2026-04-29 16:04:42 +03:00
pnpm-workspace.yaml chore: update pnpm workspace configuration to include package definitions 2026-06-01 21:17:25 +03:00
README.md feat: Generated various build artifacts and dependency caches for the Rust Tauri application. 2026-03-20 17:14:26 +03:00
test.js ci: add Forgejo CI workflow for cross-platform builds and releases, and introduce UpdateNotification component 2026-03-29 19:13:38 +03:00
tsconfig.app.json feat: Generated various build artifacts and dependency caches for the Rust Tauri application. 2026-03-20 17:14:26 +03:00
tsconfig.json feat: Generated various build artifacts and dependency caches for the Rust Tauri application. 2026-03-20 17:14:26 +03:00
tsconfig.node.json feat: Generated various build artifacts and dependency caches for the Rust Tauri application. 2026-03-20 17:14:26 +03:00
vite.config.ts refactor: streamline build process and enhance type checking 2026-04-28 22:11:20 +03:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

React Compiler

The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])