{"id":16062536,"url":"https://github.com/jhorlima/crudbooster-docker","last_synced_at":"2026-05-07T05:39:19.899Z","repository":{"id":92134912,"uuid":"137109008","full_name":"jhorlima/crudbooster-docker","owner":"jhorlima","description":"CRUDBooster - Docker Compose","archived":false,"fork":false,"pushed_at":"2019-08-22T19:33:44.000Z","size":3,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-18T14:48:50.637Z","etag":null,"topics":["crud","crud-generator","crudbooster","docker","docker-compose","laravel","laravel-application","laravel-framework","laravel5","php"],"latest_commit_sha":null,"homepage":null,"language":null,"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/jhorlima.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":"2018-06-12T17:57:14.000Z","updated_at":"2022-04-15T07:31:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"a348e223-fd16-4074-badf-b8c622415723","html_url":"https://github.com/jhorlima/crudbooster-docker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jhorlima/crudbooster-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhorlima%2Fcrudbooster-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhorlima%2Fcrudbooster-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhorlima%2Fcrudbooster-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhorlima%2Fcrudbooster-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jhorlima","download_url":"https://codeload.github.com/jhorlima/crudbooster-docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhorlima%2Fcrudbooster-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278315190,"owners_count":25966774,"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-10-04T02:00:05.491Z","response_time":63,"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":["crud","crud-generator","crudbooster","docker","docker-compose","laravel","laravel-application","laravel-framework","laravel5","php"],"created_at":"2024-10-09T04:40:59.805Z","updated_at":"2025-10-04T12:49:17.985Z","avatar_url":"https://github.com/jhorlima.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"**CRUDBooster - Docker Compose**\n\n_Lembre-se, este projeto requer as portas 80, 3306 e 6379 disponíveis. Se necessário, altere-as no docker-compose.yml_\n\n1 - Clone este repositório para algum diretório:\n\n```sh\ngit clone https://github.com/jhorlima/crudbooster-docker.git\n```\n\n2 - Dentro do diretório, execute:\n\n```sh\ndocker-compose up -d\n```\n\n3 - Após criar os containers, crie um novo projeto Laravel:\n\n```sh\ndocker-compose exec php composer create-project --prefer-dist laravel/laravel:5.7 ./\n```\n\n4 - Crie as chaves exclusivas da sua aplicação Laravel:\n\n```sh\ndocker-compose exec php php artisan key:generate\n```\n\n5 - Abra o navegador, acesse **http://localhost/** e verifique se o Laravel funcionou corretamente.\n\n6 - Agora vamos configurar o idioma e timezone do projeto, então abra o arquivo **app/config/app.php** e edite o **timezone** e **locale**:\n\n```php\n\n[\n    /*\n    |--------------------------------------------------------------------------\n    | Application Timezone\n    |--------------------------------------------------------------------------\n    |\n    | Here you may specify the default timezone for your application, which\n    | will be used by the PHP date and date-time functions. We have gone\n    | ahead and set this to a sensible default for you out of the box.\n    |\n    */\n    \n    'timezone' =\u003e 'America/Fortaleza',\n    \n    /*\n    |--------------------------------------------------------------------------\n    | Application Locale Configuration\n    |--------------------------------------------------------------------------\n    |\n    | The application locale determines the default locale that will be used\n    | by the translation service provider. You are free to set this value\n    | to any of the locales which will be supported by the application.\n    |\n    */\n    \n    'locale' =\u003e 'pt_br',\n]\n```\n\nLista de timezone para o Laravel: http://php.net/manual/pt_BR/timezones.america.php\n\n7 - Agora vamos baixar o CRUDBooster para o projeto:\n\n```sh\ndocker-compose exec php composer require crocodicstudio/crudbooster\n```\n\nTutorial do CRUDBooster: https://github.com/crocodic-studio/crudbooster/blob/master/docs/en/installation.md\n\n8 - Seguindo o tutorial do CRUDBooster, adicione a seguinte classe ao array \"providers\" no arquivo **app/config/app.php**:\n\n```php\ncrocodicstudio\\crudbooster\\CRUDBoosterServiceProvider::class,\n```\n\nFicando assim: \n\n```php\n[\n    /*\n    |--------------------------------------------------------------------------\n    | Autoloaded Service Providers\n    |--------------------------------------------------------------------------\n    |\n    | The service providers listed here will be automatically loaded on the\n    | request to your application. Feel free to add your own services to\n    | this array to grant expanded functionality to your applications.\n    |\n    */\n\n    'providers' =\u003e [\n        /*** Outros providers  ***/\n        \n        /*\n         * CRUDBooster Provider\n         */\n        crocodicstudio\\crudbooster\\CRUDBoosterServiceProvider::class,\n    ],\n]\n```\n\n9 - Agora excute o comando para configurar o CRUDBooster e siga os passos no console:\n\n```sh\ndocker-compose exec php php artisan crudbooster:install\n```\n\n10 - Acesse **http://localhost/admin** e depois realize o login com \n\n- E-mail: admin@crudbooster.com\n- Senha: 123456\n\n11 - Pronto!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjhorlima%2Fcrudbooster-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjhorlima%2Fcrudbooster-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjhorlima%2Fcrudbooster-docker/lists"}