No description
  • TypeScript 98.5%
  • CSS 1.1%
  • Python 0.2%
  • HTML 0.1%
Find a file
Serjik 1caa4f85fd
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 0s
feat: enhance API response handling and normalization across queries
2026-06-03 01:51:49 +03:00
.claude test: add unit tests for MlvTokenManager and admin queries, and update local IDE settings. 2026-04-17 12:54:45 +03:00
.forgejo/workflows feat: add Forgejo workflow to build and push Docker images 2026-04-17 14:53:49 +03:00
k8s feat: Introduce torrent search, media playback, and settings management features. 2026-03-02 19:31:33 +03:00
public refactor: implement secure token-based authentication and add comprehensive test coverage for TorrServer client 2026-04-12 16:42:25 +03:00
src feat: enhance API response handling and normalization across queries 2026-06-03 01:51:49 +03:00
.claudeignore feat: Implement party scheduling, user profiles, authentication, notifications, torrent management, and core application structure. 2026-03-01 02:29:51 +03:00
.dockerignore chore: remove dist directory from .dockerignore. 2026-03-02 04:26:06 +03:00
.gitignore feat: enhance image handling and performance optimizations across pages 2026-05-02 18:18:41 +03:00
CLAUDE.md feat: Implement party scheduling, user profiles, authentication, notifications, torrent management, and core application structure. 2026-03-01 02:29:51 +03:00
Dockerfile feat: Add multi-stage Dockerfile and CI workflow to build and push the frontend image. 2026-03-10 22:01:44 +03:00
entrypoint.sh feat: Implement a UniversalPlayer component with HLS streaming, subtitle support, and party mode capabilities, updating build and dependency files. 2026-02-17 23:16:08 +03:00
eslint.config.js Init project 2026-02-17 13:43:44 +03:00
index.html refactor: implement secure token-based authentication and add comprehensive test coverage for TorrServer client 2026-04-12 16:42:25 +03:00
lint.txt feat: Implement MovieHero, TvHero, AnimeDetailPage. 2026-03-07 19:59:35 +03:00
nginx.conf feat: add skeleton suspense loading and lazy page imports 2026-03-02 14:32:22 +03:00
package-lock.json refactor: implement secure token-based authentication and add comprehensive test coverage for TorrServer client 2026-04-12 16:42:25 +03:00
package.json refactor: implement secure token-based authentication and add comprehensive test coverage for TorrServer client 2026-04-12 16:42:25 +03:00
plan.md feat: Updated node version 2026-03-02 19:37:32 +03:00
pnpm-lock.yaml feat: Implement universal player with a comprehensive sidebar for subtitle, audio, episode, and party controls, alongside new movie and TV hero sections. 2026-03-03 02:47:44 +03:00
README.md Init project 2026-02-17 13:43:44 +03:00
refactor_sidebar.py feat: Implement universal player with a comprehensive sidebar for subtitle, audio, episode, and party controls, alongside new movie and TV hero sections. 2026-03-03 02:47:44 +03:00
TORRENTS_PAGE_ISSUES.md feat: introduce TorrentsPage with MLV Torrserver integration and player stats monitoring 2026-03-13 19:11:43 +03:00
tsconfig.app.json feat: implement main application routing with lazy-loaded pages and update TypeScript configuration 2026-04-17 13:18:16 +03:00
tsconfig.json Init project 2026-02-17 13:43:44 +03:00
tsconfig.node.json Init project 2026-02-17 13:43:44 +03:00
vite.config.ts feat: enhance API response handling and normalization across queries 2026-06-03 01:51:49 +03:00
vitest.config.ts refactor: implement secure token-based authentication and add comprehensive test coverage for TorrServer client 2026-04-12 16:42:25 +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 currently not compatible with SWC. See this issue for tracking the progress.

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...
    },
  },
])