{"id":30577631,"url":"https://github.com/vann-dev/tepan-quiz","last_synced_at":"2025-09-05T11:32:34.094Z","repository":{"id":309938053,"uuid":"1036730840","full_name":"Vann-Dev/tepan-quiz","owner":"Vann-Dev","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-14T16:26:21.000Z","size":481,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-14T18:27:46.586Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Vann-Dev.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2025-08-12T13:57:21.000Z","updated_at":"2025-08-14T16:26:25.000Z","dependencies_parsed_at":"2025-08-14T18:27:49.017Z","dependency_job_id":"ebc1f608-b3f1-45ba-8a4e-eb731a88b724","html_url":"https://github.com/Vann-Dev/tepan-quiz","commit_stats":null,"previous_names":["vann-dev/tepan-quiz"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/Vann-Dev/tepan-quiz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vann-Dev%2Ftepan-quiz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vann-Dev%2Ftepan-quiz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vann-Dev%2Ftepan-quiz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vann-Dev%2Ftepan-quiz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Vann-Dev","download_url":"https://codeload.github.com/Vann-Dev/tepan-quiz/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vann-Dev%2Ftepan-quiz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272608982,"owners_count":24964025,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-29T02:00:10.610Z","response_time":87,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2025-08-29T02:10:58.031Z","updated_at":"2025-08-29T02:10:59.282Z","avatar_url":"https://github.com/Vann-Dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tepan Quiz\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"public/logo.png\" alt=\"Tepan Quiz Logo\" width=\"120\" /\u003e\n\u003c/p\u003e\n\nTepan Quiz is a modern Quizlet-like web application built with Laravel, Inertia.js, and React. It allows users to create, manage, and study quizzes with flashcards and learning sessions.\n\n## Features\n\n- User authentication (register, login, email verification)\n- Create, edit, and delete quizzes\n- Add, edit, import, and delete terms (flashcards) for each quiz\n- Study with Flashcard mode (flip cards)\n- Interactive Learn mode with session tracking and review\n- Test mode (multiple-choice quiz)\n- Profile and password settings pages\n- Responsive, modern UI with light/dark mode\n- Bulk import of terms with custom separators\n- Progress tracking in learn sessions\n- UI built with shadcn/ui and Radix UI components\n- Improved user menu and sidebar navigation\n\n## Tech Stack\n\n- **Backend:** Laravel 12, Inertia.js\n- **Frontend:** React 19, TypeScript, Tailwind CSS\n- **Database:** SQLite (default, can be changed)\n\n## Getting Started\n\n### Prerequisites\n\n- PHP \u003e= 8.2\n- Node.js \u003e= 18\n- Composer\n\n### Installation\n\n1. **Clone the repository:**\n    ```sh\n    git clone \u003cyour-repo-url\u003e\n    cd copy-quizlet\n    ```\n2. **Install PHP dependencies:**\n    ```sh\n    composer install\n    ```\n3. **Install JS dependencies:**\n    ```sh\n    npm install\n    ```\n4. **Copy .env and generate app key:**\n    ```sh\n    cp .env.example .env\n    php artisan key:generate\n    ```\n5. **Run migrations:**\n    ```sh\n    php artisan migrate\n    ```\n6. **Start the development servers:**\n    ```sh\n    npm run dev\n    php artisan serve\n    ```\n    Or use the all-in-one command:\n    ```sh\n    composer dev\n    ```\n\nVisit [http://localhost:8000](http://localhost:8000) to view the app.\n\n## Usage\n\n1. Register a new account or log in.\n2. Create a new quiz from the dashboard.\n3. Add terms (flashcards) manually or use the import feature for bulk entry.\n4. Study your quiz using Flashcard or Learn mode.\n\n## Project Structure\n\n- `app/Models/` — Eloquent models for Quiz, Term, User\n- `app/Http/Controllers/QuizController.php` — Main controller for quiz logic\n- `resources/js/pages/` — React pages (dashboard, quiz, edit, flashcards, learn, etc.)\n- `resources/views/app.blade.php` — Main Blade template\n- `routes/web.php` — Main web routes\n- `database/migrations/` — Database schema\n- `public/logo.png` — Project logo\n\n## Scripts\n\n- `npm run dev` — Start Vite dev server\n- `npm run build` — Build frontend assets\n- `composer dev` — Start backend, queue, and frontend together (see composer.json)\n- `php artisan migrate` — Run database migrations\n\n## License\n\nThis project is open-sourced under the MIT license.\n\n---\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"public/logo.png\" alt=\"Tepan Quiz Logo\" width=\"60\" /\u003e\n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvann-dev%2Ftepan-quiz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvann-dev%2Ftepan-quiz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvann-dev%2Ftepan-quiz/lists"}