{"id":27236575,"url":"https://github.com/ambitiousflowdev/pole-it","last_synced_at":"2026-05-11T07:22:43.135Z","repository":{"id":240402212,"uuid":"802530615","full_name":"AmbitiousFlowDev/Pole-IT","owner":"AmbitiousFlowDev","description":"Multiservice Web application with Laravel Livewire and Filament.","archived":false,"fork":false,"pushed_at":"2024-12-09T10:26:21.000Z","size":61274,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-19T12:45:46.186Z","etag":null,"topics":["laravel","livewire","php"],"latest_commit_sha":null,"homepage":"","language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AmbitiousFlowDev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-05-18T14:55:44.000Z","updated_at":"2025-02-04T15:06:45.000Z","dependencies_parsed_at":"2024-05-18T16:31:03.254Z","dependency_job_id":"457b543a-7286-4d59-85e6-c1dd062b4a48","html_url":"https://github.com/AmbitiousFlowDev/Pole-IT","commit_stats":null,"previous_names":["sikroxmemer/pole-it","moon-fang-su/pole-it","0xkyle-byte/pole-it","0xsikrox/pole-it","oxsikrox/pole-it","mohamed-lafrouh/pole-it","ambitiousflowdev/pole-it","ambitiousflow/pole-it"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AmbitiousFlowDev/Pole-IT","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmbitiousFlowDev%2FPole-IT","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmbitiousFlowDev%2FPole-IT/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmbitiousFlowDev%2FPole-IT/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmbitiousFlowDev%2FPole-IT/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AmbitiousFlowDev","download_url":"https://codeload.github.com/AmbitiousFlowDev/Pole-IT/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmbitiousFlowDev%2FPole-IT/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275537140,"owners_count":25482344,"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-09-17T02:00:09.119Z","response_time":84,"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":["laravel","livewire","php"],"created_at":"2025-04-10T17:24:11.338Z","updated_at":"2025-09-17T04:46:19.799Z","avatar_url":"https://github.com/AmbitiousFlowDev.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pole-IT\n\n![Laravel](https://img.shields.io/badge/Laravel-10.x-red)\n![SQLite](https://img.shields.io/badge/SQLite-3-blue)\n![Filament](https://img.shields.io/badge/Filament-2.x-green)\n![Livewire](https://img.shields.io/badge/Livewire-2.x-orange)\n\n---\n\n## Project Structure\n\n### Key Directories\n- **`app`**: Contains the core application logic, including resources, controllers, and models.\n  - **`Filament/Resources`**: Defines Filament resources like `ActivityResource`, `BlogResource`, `ProductResource`, etc.\n  - **`Http/Controllers`**: Houses application controllers.\n  - **`Models`**: Contains Eloquent models.\n  - **`Providers`**: Includes custom service providers.\n- **`config`**: Application configuration files.\n- **`database`**: Database migrations, factories, and seeders.\n- **`public`**: Publicly accessible assets such as CSS, JavaScript, and images.\n- **`resources`**: Contains front-end resources like views, CSS, and JavaScript.\n  - **`views`**: Includes Blade templates for pages like `auth`, `home`, and `shop`.\n- **`routes`**: Contains route definitions.\n- **`storage`**: Stores files, logs, and cache data.\n- **`tests`**: Automated tests for the application.\n\n---\n\n## Features\n\n- **Filament Admin Panel**: Manage resources such as products, orders, and blogs.\n- **Livewire Integration**: Build reactive and dynamic front-end components.\n- **SQLite Database**: Lightweight database for quick setup and development.\n- **Customizable Views**: Organized templates for pages like the shop and home.\n\n---\n\n## Installation\n\n1. **Clone the repository**:\n   ```bash\n   git clone \u003crepository_url\u003e\n   cd \u003cproject_directory\u003e\n   ```\n\n2. **Install dependencies**:\n   ```bash\n   composer install\n   npm install\n   ```\n\n3. **Set up environment variables**:\n   Copy `.env.example` to `.env` and configure it for SQLite:\n   ```env\n   DB_CONNECTION=sqlite\n   DB_DATABASE=database/database.sqlite\n   ```\n\n   Create the SQLite database file:\n   ```bash\n   touch database/database.sqlite\n   ```\n\n4. **Run migrations**:\n   ```bash\n   php artisan migrate --seed\n   ```\n\n5. **Start the development server**:\n   ```bash\n   php artisan serve\n   npm run dev\n   ```\n\n---\n\n## Usage\n\n- Access the application via the URL provided by `php artisan serve`.\n- Use the Filament admin panel for resource management (`/admin` by default).\n\n---\n\n## Testing\n\nRun automated tests to ensure the application is functioning as expected:\n```bash\nphp artisan test\n```\n\n---\n\n## Contributing\n\nContributions are welcome! Feel free to submit a pull request or open an issue for bug fixes or feature requests.\n\n---\n\n## License\n\nThis project is open-source and available under the [GNU LICENSE](LICENSE).\n\n--- \n\nFeel free to adjust as per your needs!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fambitiousflowdev%2Fpole-it","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fambitiousflowdev%2Fpole-it","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fambitiousflowdev%2Fpole-it/lists"}