{"id":23859007,"url":"https://github.com/coloredcow/laravel-init","last_synced_at":"2026-03-11T14:37:11.164Z","repository":{"id":280773386,"uuid":"935358208","full_name":"ColoredCow/laravel-init","owner":"ColoredCow","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-06T01:42:55.000Z","size":285,"stargazers_count":0,"open_issues_count":3,"forks_count":2,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-09-08T06:43:41.764Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","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/ColoredCow.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-19T10:12:53.000Z","updated_at":"2025-04-08T09:19:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"915a8970-26ee-4d92-bff9-b4ef83b98d0d","html_url":"https://github.com/ColoredCow/laravel-init","commit_stats":null,"previous_names":["coloredcow/laravel-init"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/ColoredCow/laravel-init","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColoredCow%2Flaravel-init","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColoredCow%2Flaravel-init/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColoredCow%2Flaravel-init/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColoredCow%2Flaravel-init/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ColoredCow","download_url":"https://codeload.github.com/ColoredCow/laravel-init/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColoredCow%2Flaravel-init/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30384085,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-11T14:10:17.325Z","status":"ssl_error","status_checked_at":"2026-03-11T14:09:37.934Z","response_time":84,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":"2025-01-03T03:29:08.721Z","updated_at":"2026-03-11T14:37:11.136Z","avatar_url":"https://github.com/ColoredCow.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Boilerplate Application\n\n## About\n\nBoilerplate is a pre-built authentication system that provides reusable functionality for login, sign-up, email verification, OTP authentication, user profile management, and logout. It is designed to be easily integrated into any Laravel project, allowing developers to focus on core business logic instead of implementing authentication from scratch.\n\n## Features\n- User Registration \u0026 Login\n- Email Verification\n- Profile Management\n- Logout Functionality\n\n## Installation\n\nFollow these steps to set up and use the application:\n\n### Setup Instructions\n\n1. Clone the repository:\n   ```sh\n   git clone https://github.com/ColoredCow/laravel-init.git\n   ```\n\n2. Navigate into the project directory:\n   ```sh\n   cd laravel-init\n   ```\n\n3. Install dependencies using Composer:\n   ```sh\n   composer install\n   ```\n\n4. Copy the example environment file:\n   ```sh\n   cp .env.example .env\n   ```\n\n5. Update the `.env` file with your database credentials:\n   ```env\n   DB_CONNECTION=mysql\n   DB_HOST=127.0.0.1\n   DB_PORT=3306\n   DB_DATABASE=laravelinit\n   DB_USERNAME=root\n   DB_PASSWORD=\n   ```\n\n6. Configure your mail settings for email verification:\n   Registration requires email verification, so ensure your mail settings are correctly configured in the `.env` file:\n   ```env\n   MAIL_MAILER=smtp\n   MAIL_SCHEME=null\n   MAIL_HOST=localhost\n   MAIL_PORT=1025\n   MAIL_USERNAME=maildev\n   MAIL_PASSWORD=maildev\n   ```\n\n7. Generate the application key:\n   ```sh\n   php artisan key:generate\n   ```\n\n8. Run database migrations:\n   ```sh\n   php artisan migrate\n   ```\n\n9. (Optional) Seed the database with default data:\n   ```sh\n   php artisan db:seed\n   ```\n\n10. Start the development server:\n    -  Using `serve`\n      ```sh\n      php artisan serve\n      ```\n      Your application should now be running at [**http://127.0.0.1:8000**](http://127.0.0.1:8000)\n    - Using [Laravel Valet](https://laravel.com/docs/12.x/valet#main-content)\n      ```sh\n      valet link laravel-init\n\n      valet secure laravel-init\n      ```\n      Your application should now be running at [**https://laravel-init.test**](https://laravel-init.test)\n\n11. Follow the [Deployment Guidelines](docs/deployment.md) for setting up the application on a live server.\n\nYou can use the following test admin credentials to log in:\n- **Email:** admin@admin.com\n- **Password:** admin@123\n\n## Contribution\nContributions are welcome! Feel free to fork this repository, submit issues, or make pull requests to improve the Boiler Plate application.\n\n---\n\nFor any questions or support, feel free to reach out to the repository maintainers or open an issue.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoloredcow%2Flaravel-init","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoloredcow%2Flaravel-init","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoloredcow%2Flaravel-init/lists"}