{"id":21076266,"url":"https://github.com/innosan/rps_arrays","last_synced_at":"2026-02-05T06:01:17.643Z","repository":{"id":255560787,"uuid":"851862469","full_name":"Innosan/rps_arrays","owner":"Innosan","description":"Full-stack web app for the third task of RPS. Arrays must be sorted.","archived":false,"fork":false,"pushed_at":"2024-09-27T15:26:35.000Z","size":217,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-14T03:45:00.744Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Innosan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-03T20:25:07.000Z","updated_at":"2024-09-08T05:04:19.000Z","dependencies_parsed_at":"2025-01-20T22:47:34.880Z","dependency_job_id":"dcba866b-df24-42b7-a80a-2307e515d42e","html_url":"https://github.com/Innosan/rps_arrays","commit_stats":null,"previous_names":["innosan/rps_arrays"],"tags_count":0,"template":false,"template_full_name":"Innosan/nuxt-template-project","purl":"pkg:github/Innosan/rps_arrays","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Innosan%2Frps_arrays","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Innosan%2Frps_arrays/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Innosan%2Frps_arrays/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Innosan%2Frps_arrays/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Innosan","download_url":"https://codeload.github.com/Innosan/rps_arrays/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Innosan%2Frps_arrays/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29114497,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T05:31:32.482Z","status":"ssl_error","status_checked_at":"2026-02-05T05:31:29.075Z","response_time":65,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-19T19:27:39.145Z","updated_at":"2026-02-05T06:01:17.625Z","avatar_url":"https://github.com/Innosan.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nuxt Template\n\nThis project is a Nuxt 3 application template with TypeScript support. It includes a basic navigation setup and some utility components.\n\n# Project Structure\n\nThis project is a Nuxt 3 application template with TypeScript support. It includes a basic navigation setup, some utility components, and state management using Pinia.\n\n## Folder Structure\n\n- `assets/`: Contains static assets like stylesheets.\n\t- `styles/`: Main styles directory.\n\t\t- `css/`: Contains CSS files.\n\t\t- `scss/`: Contains SCSS files.\n- `components/`: Contains Vue components.\n\t- `layout/section/`: Components for layout sections.\n\t\t- `PageSection.vue`: Component for page sections.\n\t\t- `SectionTitle.vue`: Component for section titles.\n\t- `navigation/`: Components for navigation.\n\t\t- `BurgerNavigation.vue`: Component for burger menu navigation.\n\t\t- `IconedNavigationLink.vue`: Component for navigation links with icons.\n\t\t- `SidebarNavigation.vue`: Component for sidebar navigation.\n\t\t- `TopNavigation.vue`: Component for top navigation.\n\t- `theming/`: Components for theming.\n\t\t- `ColorSwitch.vue`: Component for switching colors.\n\t\t- `ThemeSwitch.vue`: Component for switching themes.\n\t- `utility/`: Utility components.\n\t\t- `Header.vue`: Header component.\n- `pages/`: Contains page components.\n\t- `about.vue`: About page.\n\t- `help.vue`: Help page.\n\t- `index.vue`: Home page.\n- `public/`: Contains public assets.\n\t- `favicon.ico`: Favicon for the application.\n\t- `fonts/`: Contains font files.\n\t\t- `Manrope-VariableFont_wght.ttf`: Manrope font.\n\t- `images/`: Contains image files.\n\t\t- `delete.ts`: Example image file.\n- `server/`: Contains server-side code.\n\t- `tsconfig.json`: TypeScript configuration for the server.\n- `stores/`: Contains Pinia stores.\n\t- `settings.ts`: Store for managing application settings.\n- `types/`: Contains TypeScript type definitions.\n\t- `ui/`: UI-related types.\n\t\t- `SectionSizes.ts`: Type definitions for section sizes.\n\t- `utility/`: Utility types.\n\t\t- `NavigationLink.ts`: Type definitions for navigation links.\n- `utils/`: Contains utility functions.\n\t- `navigation.ts`: Utility functions for navigation.\n\n## Explanation\n\nThe project is structured to separate concerns and improve maintainability:\n\n- **Assets**: Static files like stylesheets are organized under `assets` to keep them separate from the application logic.\n- **Components**: Vue components are organized by their functionality (layout, navigation, theming, utility) to make it easier to find and manage them.\n- **Pages**: Each page of the application has its own file under `pages`, following the Nuxt.js convention.\n- **Public**: Public assets like fonts and images are placed under `public` to be served directly.\n- **Server**: Server-side code is kept under `server` to separate it from client-side code.\n- **Stores**: State management is handled using Pinia stores, which are placed under `stores`.\n- **Types**: TypeScript type definitions are organized under `types` to ensure type safety across the application.\n- **Utils**: Utility functions are placed under `utils` for reusability and better organization.\n\n## Stores\n\n### `stores/settings.ts`\n\nThis file contains the settings store which manages the application's settings, such as the primary color. It uses Pinia for state management.\n\n## Setup\n\nMake sure to install the dependencies:\n\n```bash\n# npm\nnpm install\n```\n\n```bash\n# pnpm\npnpm install\n```\n\n```bash\n# yarn\nyarn install\n```\n\n```bash\n# bun\nbun install\n```\n\n## Deployment\n\n```bash\n# bun\nbun run dev\n```\n\n```bash\n# npm\nnpm run dev\n```\n\n```bash\n# pnpm\npnpm run dev\n```\n\n```bash\n# yarn\nyarn dev\n```\n\nCheck out the [Deployment guide](https://nuxt.com/docs/getting-started/deployment) for more information.  \nLicense\nThis project is licensed under the MIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finnosan%2Frps_arrays","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finnosan%2Frps_arrays","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finnosan%2Frps_arrays/lists"}