├── .gitignore ├── customer_service ├── .docker │ └── nginx │ │ ├── Dockerfile │ │ └── nginx.conf ├── .editorconfig ├── .env ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── Dockerfile ├── app │ ├── Console │ │ ├── Commands │ │ │ ├── KafkaConsumer.php │ │ │ └── KafkaProducerSeeder.php │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── ConfirmPasswordController.php │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ ├── ResetPasswordController.php │ │ │ │ └── VerificationController.php │ │ │ └── Controller.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Kafka │ │ └── OrderHandler.php │ ├── Models │ │ ├── Customer.php │ │ ├── Order.php │ │ ├── OrderItem.php │ │ ├── Product.php │ │ ├── Traits │ │ │ └── Uuid.php │ │ └── User.php │ ├── Nova │ │ ├── Customer.php │ │ ├── Order.php │ │ ├── OrderItem.php │ │ ├── Product.php │ │ ├── Resource.php │ │ └── User.php │ ├── Observers │ │ └── KafkaCustomerObserver.php │ ├── Policies │ │ ├── OrderItemPolicy.php │ │ ├── OrderPolicy.php │ │ └── ProductPolicy.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ ├── NovaServiceProvider.php │ │ └── RouteServiceProvider.php │ └── Services │ │ └── OrderService.php ├── artisan ├── bootstrap │ ├── app.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── hashing.php │ ├── logging.php │ ├── mail.php │ ├── nova.php │ ├── queue.php │ ├── saml2 │ │ ├── CUSTOMER_idp_settings.php │ │ └── test_idp_settings.php │ ├── saml2_settings.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2018_01_01_000000_create_action_events_table.php │ │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ │ ├── 2019_08_25_202953_customer.php │ │ ├── 2019_08_25_202953_product.php │ │ ├── 2019_09_05_110116_create_orders_table.php │ │ └── 2019_10_09_133938_order_item.php │ └── seeds │ │ └── DatabaseSeeder.php ├── docker-compose.yml ├── entrypoint.sh ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── web.config ├── readme.md ├── resources │ ├── js │ │ ├── app.js │ │ └── bootstrap.js │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ ├── sass │ │ └── app.scss │ └── views │ │ └── welcome.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── server.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php └── webpack.mix.js ├── k8s ├── customer_service │ ├── app │ │ ├── app-configmap.yaml │ │ ├── app-deployment.yaml │ │ ├── app-job.yaml │ │ └── app-service.yaml │ ├── kafka │ │ ├── helm.yaml │ │ └── kafka-client.yaml │ ├── mysql │ │ ├── mysql-deployment.yaml │ │ ├── mysql-persistent-volume-claim.yml │ │ ├── mysql-secret.yaml │ │ └── mysql-service.yaml │ └── redis │ │ └── redis-master.yaml ├── product_service │ ├── app │ │ ├── app-configmap.yaml │ │ ├── app-deployment.yaml │ │ └── app-service.yaml │ ├── kafka │ │ ├── helm.yaml │ │ └── kafka-client.yaml │ ├── mysql │ │ ├── mysql-deployment.yaml │ │ ├── mysql-persistent-volume-claim.yml │ │ ├── mysql-secret.yaml │ │ └── mysql-service.yaml │ └── redis │ │ └── redis-master.yaml └── rental_service │ ├── app │ ├── app-configmap.yaml │ ├── app-deployment.yaml │ ├── app-job-customer.yaml │ ├── app-job.yaml │ └── app-service.yaml │ ├── kafka │ ├── helm.yaml │ └── kafka-client.yaml │ ├── mysql │ ├── mysql-deployment.yaml │ ├── mysql-persistent-volume-claim.yml │ ├── mysql-secret.yaml │ └── mysql-service.yaml │ └── redis │ └── redis-master.yaml ├── kafka └── docker-compose.yml ├── product_service ├── .docker │ └── nginx │ │ ├── Dockerfile │ │ └── nginx.conf ├── .editorconfig ├── .env ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── Dockerfile ├── app │ ├── Console │ │ ├── Commands │ │ │ └── ProducerSeeder.php │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── ConfirmPasswordController.php │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ ├── ResetPasswordController.php │ │ │ │ └── VerificationController.php │ │ │ └── Controller.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Models │ │ ├── Product.php │ │ ├── Traits │ │ │ └── Uuid.php │ │ └── User.php │ ├── Nova │ │ ├── Product.php │ │ ├── Resource.php │ │ └── User.php │ ├── Observers │ │ └── KafkaProductObserver.php │ └── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ ├── NovaServiceProvider.php │ │ └── RouteServiceProvider.php ├── artisan ├── bootstrap │ ├── app.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── hashing.php │ ├── logging.php │ ├── mail.php │ ├── nova.php │ ├── queue.php │ ├── saml2 │ │ ├── PRODUCT_idp_settings.php │ │ └── test_idp_settings.php │ ├── saml2_settings.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2018_01_01_000000_create_action_events_table.php │ │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ │ └── 2019_08_25_202953_product.php │ └── seeds │ │ └── DatabaseSeeder.php ├── docker-compose.yml ├── entrypoint.sh ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── web.config ├── readme.md ├── resources │ ├── js │ │ ├── app.js │ │ └── bootstrap.js │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ ├── sass │ │ └── app.scss │ └── views │ │ └── welcome.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── server.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ ├── .gitignore │ │ │ └── data │ │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── test.txt ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php └── webpack.mix.js └── rental_service ├── .docker └── nginx │ ├── Dockerfile │ └── nginx.conf ├── .editorconfig ├── .env ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── Dockerfile ├── app ├── Console │ ├── Commands │ │ └── KafkaConsumer.php │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ └── Controller.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Kafka │ ├── CustomerHandler.php │ └── ProductHandler.php ├── Models │ ├── Customer.php │ ├── Order.php │ ├── OrderItem.php │ ├── Payment.php │ ├── Product.php │ ├── Traits │ │ └── Uuid.php │ └── User.php ├── Nova │ ├── Customer.php │ ├── Order.php │ ├── OrderItem.php │ ├── Payment.php │ ├── Product.php │ ├── Resource.php │ └── User.php ├── Observers │ ├── OrderItemObserver.php │ ├── OrderObserver.php │ └── PaymentObserver.php ├── Policies │ ├── CustomerPolicy.php │ └── ProductPolicy.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── NovaServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── nova.php ├── queue.php ├── saml2 │ ├── RENTAL_idp_settings.php │ └── test_idp_settings.php ├── saml2_settings.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2018_01_01_000000_create_action_events_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_08_25_202953_customer.php │ ├── 2019_08_25_202953_product.php │ ├── 2019_09_05_110116_create_orders_table.php │ ├── 2019_10_09_133938_order_item.php │ └── 2019_10_09_133938_payment.php └── seeds │ └── DatabaseSeeder.php ├── docker-compose.yml ├── entrypoint.sh ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── index.php ├── robots.txt └── web.config ├── readme.md ├── resources ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ └── app.scss └── views │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/.gitignore -------------------------------------------------------------------------------- /customer_service/.docker/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/.docker/nginx/Dockerfile -------------------------------------------------------------------------------- /customer_service/.docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/.docker/nginx/nginx.conf -------------------------------------------------------------------------------- /customer_service/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/.editorconfig -------------------------------------------------------------------------------- /customer_service/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/.env -------------------------------------------------------------------------------- /customer_service/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/.env.example -------------------------------------------------------------------------------- /customer_service/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/.gitattributes -------------------------------------------------------------------------------- /customer_service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/.gitignore -------------------------------------------------------------------------------- /customer_service/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/.styleci.yml -------------------------------------------------------------------------------- /customer_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/Dockerfile -------------------------------------------------------------------------------- /customer_service/app/Console/Commands/KafkaConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Console/Commands/KafkaConsumer.php -------------------------------------------------------------------------------- /customer_service/app/Console/Commands/KafkaProducerSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Console/Commands/KafkaProducerSeeder.php -------------------------------------------------------------------------------- /customer_service/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Console/Kernel.php -------------------------------------------------------------------------------- /customer_service/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /customer_service/app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Controllers/Auth/ConfirmPasswordController.php -------------------------------------------------------------------------------- /customer_service/app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /customer_service/app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /customer_service/app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /customer_service/app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /customer_service/app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /customer_service/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /customer_service/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Kernel.php -------------------------------------------------------------------------------- /customer_service/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /customer_service/app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /customer_service/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /customer_service/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /customer_service/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /customer_service/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /customer_service/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /customer_service/app/Kafka/OrderHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Kafka/OrderHandler.php -------------------------------------------------------------------------------- /customer_service/app/Models/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Models/Customer.php -------------------------------------------------------------------------------- /customer_service/app/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Models/Order.php -------------------------------------------------------------------------------- /customer_service/app/Models/OrderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Models/OrderItem.php -------------------------------------------------------------------------------- /customer_service/app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Models/Product.php -------------------------------------------------------------------------------- /customer_service/app/Models/Traits/Uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Models/Traits/Uuid.php -------------------------------------------------------------------------------- /customer_service/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Models/User.php -------------------------------------------------------------------------------- /customer_service/app/Nova/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Nova/Customer.php -------------------------------------------------------------------------------- /customer_service/app/Nova/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Nova/Order.php -------------------------------------------------------------------------------- /customer_service/app/Nova/OrderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Nova/OrderItem.php -------------------------------------------------------------------------------- /customer_service/app/Nova/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Nova/Product.php -------------------------------------------------------------------------------- /customer_service/app/Nova/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Nova/Resource.php -------------------------------------------------------------------------------- /customer_service/app/Nova/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Nova/User.php -------------------------------------------------------------------------------- /customer_service/app/Observers/KafkaCustomerObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Observers/KafkaCustomerObserver.php -------------------------------------------------------------------------------- /customer_service/app/Policies/OrderItemPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Policies/OrderItemPolicy.php -------------------------------------------------------------------------------- /customer_service/app/Policies/OrderPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Policies/OrderPolicy.php -------------------------------------------------------------------------------- /customer_service/app/Policies/ProductPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Policies/ProductPolicy.php -------------------------------------------------------------------------------- /customer_service/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /customer_service/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /customer_service/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /customer_service/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /customer_service/app/Providers/NovaServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Providers/NovaServiceProvider.php -------------------------------------------------------------------------------- /customer_service/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /customer_service/app/Services/OrderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/app/Services/OrderService.php -------------------------------------------------------------------------------- /customer_service/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/artisan -------------------------------------------------------------------------------- /customer_service/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/bootstrap/app.php -------------------------------------------------------------------------------- /customer_service/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /customer_service/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/composer.json -------------------------------------------------------------------------------- /customer_service/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/composer.lock -------------------------------------------------------------------------------- /customer_service/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/app.php -------------------------------------------------------------------------------- /customer_service/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/auth.php -------------------------------------------------------------------------------- /customer_service/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/broadcasting.php -------------------------------------------------------------------------------- /customer_service/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/cache.php -------------------------------------------------------------------------------- /customer_service/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/database.php -------------------------------------------------------------------------------- /customer_service/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/filesystems.php -------------------------------------------------------------------------------- /customer_service/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/hashing.php -------------------------------------------------------------------------------- /customer_service/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/logging.php -------------------------------------------------------------------------------- /customer_service/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/mail.php -------------------------------------------------------------------------------- /customer_service/config/nova.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/nova.php -------------------------------------------------------------------------------- /customer_service/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/queue.php -------------------------------------------------------------------------------- /customer_service/config/saml2/CUSTOMER_idp_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/saml2/CUSTOMER_idp_settings.php -------------------------------------------------------------------------------- /customer_service/config/saml2/test_idp_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/saml2/test_idp_settings.php -------------------------------------------------------------------------------- /customer_service/config/saml2_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/saml2_settings.php -------------------------------------------------------------------------------- /customer_service/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/services.php -------------------------------------------------------------------------------- /customer_service/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/session.php -------------------------------------------------------------------------------- /customer_service/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/config/view.php -------------------------------------------------------------------------------- /customer_service/database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/database/.gitignore -------------------------------------------------------------------------------- /customer_service/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/database/factories/UserFactory.php -------------------------------------------------------------------------------- /customer_service/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /customer_service/database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /customer_service/database/migrations/2018_01_01_000000_create_action_events_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/database/migrations/2018_01_01_000000_create_action_events_table.php -------------------------------------------------------------------------------- /customer_service/database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /customer_service/database/migrations/2019_08_25_202953_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/database/migrations/2019_08_25_202953_customer.php -------------------------------------------------------------------------------- /customer_service/database/migrations/2019_08_25_202953_product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/database/migrations/2019_08_25_202953_product.php -------------------------------------------------------------------------------- /customer_service/database/migrations/2019_09_05_110116_create_orders_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/database/migrations/2019_09_05_110116_create_orders_table.php -------------------------------------------------------------------------------- /customer_service/database/migrations/2019_10_09_133938_order_item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/database/migrations/2019_10_09_133938_order_item.php -------------------------------------------------------------------------------- /customer_service/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /customer_service/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/docker-compose.yml -------------------------------------------------------------------------------- /customer_service/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/entrypoint.sh -------------------------------------------------------------------------------- /customer_service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/package.json -------------------------------------------------------------------------------- /customer_service/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/phpunit.xml -------------------------------------------------------------------------------- /customer_service/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/public/.htaccess -------------------------------------------------------------------------------- /customer_service/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /customer_service/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/public/index.php -------------------------------------------------------------------------------- /customer_service/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /customer_service/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/public/web.config -------------------------------------------------------------------------------- /customer_service/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/readme.md -------------------------------------------------------------------------------- /customer_service/resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /customer_service/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/resources/js/bootstrap.js -------------------------------------------------------------------------------- /customer_service/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/resources/lang/en/auth.php -------------------------------------------------------------------------------- /customer_service/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /customer_service/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /customer_service/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/resources/lang/en/validation.php -------------------------------------------------------------------------------- /customer_service/resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /customer_service/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /customer_service/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/routes/api.php -------------------------------------------------------------------------------- /customer_service/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/routes/channels.php -------------------------------------------------------------------------------- /customer_service/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/routes/console.php -------------------------------------------------------------------------------- /customer_service/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/routes/web.php -------------------------------------------------------------------------------- /customer_service/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/server.php -------------------------------------------------------------------------------- /customer_service/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /customer_service/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /customer_service/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/storage/framework/.gitignore -------------------------------------------------------------------------------- /customer_service/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /customer_service/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /customer_service/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /customer_service/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /customer_service/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /customer_service/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/tests/CreatesApplication.php -------------------------------------------------------------------------------- /customer_service/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /customer_service/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/tests/TestCase.php -------------------------------------------------------------------------------- /customer_service/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /customer_service/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/customer_service/webpack.mix.js -------------------------------------------------------------------------------- /k8s/customer_service/app/app-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/customer_service/app/app-configmap.yaml -------------------------------------------------------------------------------- /k8s/customer_service/app/app-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/customer_service/app/app-deployment.yaml -------------------------------------------------------------------------------- /k8s/customer_service/app/app-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/customer_service/app/app-job.yaml -------------------------------------------------------------------------------- /k8s/customer_service/app/app-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/customer_service/app/app-service.yaml -------------------------------------------------------------------------------- /k8s/customer_service/kafka/helm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/customer_service/kafka/helm.yaml -------------------------------------------------------------------------------- /k8s/customer_service/kafka/kafka-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/customer_service/kafka/kafka-client.yaml -------------------------------------------------------------------------------- /k8s/customer_service/mysql/mysql-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/customer_service/mysql/mysql-deployment.yaml -------------------------------------------------------------------------------- /k8s/customer_service/mysql/mysql-persistent-volume-claim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/customer_service/mysql/mysql-persistent-volume-claim.yml -------------------------------------------------------------------------------- /k8s/customer_service/mysql/mysql-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/customer_service/mysql/mysql-secret.yaml -------------------------------------------------------------------------------- /k8s/customer_service/mysql/mysql-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/customer_service/mysql/mysql-service.yaml -------------------------------------------------------------------------------- /k8s/customer_service/redis/redis-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/customer_service/redis/redis-master.yaml -------------------------------------------------------------------------------- /k8s/product_service/app/app-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/product_service/app/app-configmap.yaml -------------------------------------------------------------------------------- /k8s/product_service/app/app-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/product_service/app/app-deployment.yaml -------------------------------------------------------------------------------- /k8s/product_service/app/app-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/product_service/app/app-service.yaml -------------------------------------------------------------------------------- /k8s/product_service/kafka/helm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/product_service/kafka/helm.yaml -------------------------------------------------------------------------------- /k8s/product_service/kafka/kafka-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/product_service/kafka/kafka-client.yaml -------------------------------------------------------------------------------- /k8s/product_service/mysql/mysql-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/product_service/mysql/mysql-deployment.yaml -------------------------------------------------------------------------------- /k8s/product_service/mysql/mysql-persistent-volume-claim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/product_service/mysql/mysql-persistent-volume-claim.yml -------------------------------------------------------------------------------- /k8s/product_service/mysql/mysql-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/product_service/mysql/mysql-secret.yaml -------------------------------------------------------------------------------- /k8s/product_service/mysql/mysql-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/product_service/mysql/mysql-service.yaml -------------------------------------------------------------------------------- /k8s/product_service/redis/redis-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/product_service/redis/redis-master.yaml -------------------------------------------------------------------------------- /k8s/rental_service/app/app-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/rental_service/app/app-configmap.yaml -------------------------------------------------------------------------------- /k8s/rental_service/app/app-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/rental_service/app/app-deployment.yaml -------------------------------------------------------------------------------- /k8s/rental_service/app/app-job-customer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/rental_service/app/app-job-customer.yaml -------------------------------------------------------------------------------- /k8s/rental_service/app/app-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/rental_service/app/app-job.yaml -------------------------------------------------------------------------------- /k8s/rental_service/app/app-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/rental_service/app/app-service.yaml -------------------------------------------------------------------------------- /k8s/rental_service/kafka/helm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/rental_service/kafka/helm.yaml -------------------------------------------------------------------------------- /k8s/rental_service/kafka/kafka-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/rental_service/kafka/kafka-client.yaml -------------------------------------------------------------------------------- /k8s/rental_service/mysql/mysql-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/rental_service/mysql/mysql-deployment.yaml -------------------------------------------------------------------------------- /k8s/rental_service/mysql/mysql-persistent-volume-claim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/rental_service/mysql/mysql-persistent-volume-claim.yml -------------------------------------------------------------------------------- /k8s/rental_service/mysql/mysql-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/rental_service/mysql/mysql-secret.yaml -------------------------------------------------------------------------------- /k8s/rental_service/mysql/mysql-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/rental_service/mysql/mysql-service.yaml -------------------------------------------------------------------------------- /k8s/rental_service/redis/redis-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/k8s/rental_service/redis/redis-master.yaml -------------------------------------------------------------------------------- /kafka/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/kafka/docker-compose.yml -------------------------------------------------------------------------------- /product_service/.docker/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/.docker/nginx/Dockerfile -------------------------------------------------------------------------------- /product_service/.docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/.docker/nginx/nginx.conf -------------------------------------------------------------------------------- /product_service/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/.editorconfig -------------------------------------------------------------------------------- /product_service/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/.env -------------------------------------------------------------------------------- /product_service/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/.env.example -------------------------------------------------------------------------------- /product_service/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/.gitattributes -------------------------------------------------------------------------------- /product_service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/.gitignore -------------------------------------------------------------------------------- /product_service/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/.styleci.yml -------------------------------------------------------------------------------- /product_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/Dockerfile -------------------------------------------------------------------------------- /product_service/app/Console/Commands/ProducerSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Console/Commands/ProducerSeeder.php -------------------------------------------------------------------------------- /product_service/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Console/Kernel.php -------------------------------------------------------------------------------- /product_service/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /product_service/app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Controllers/Auth/ConfirmPasswordController.php -------------------------------------------------------------------------------- /product_service/app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /product_service/app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /product_service/app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /product_service/app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /product_service/app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /product_service/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /product_service/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Kernel.php -------------------------------------------------------------------------------- /product_service/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /product_service/app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /product_service/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /product_service/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /product_service/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /product_service/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /product_service/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /product_service/app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Models/Product.php -------------------------------------------------------------------------------- /product_service/app/Models/Traits/Uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Models/Traits/Uuid.php -------------------------------------------------------------------------------- /product_service/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Models/User.php -------------------------------------------------------------------------------- /product_service/app/Nova/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Nova/Product.php -------------------------------------------------------------------------------- /product_service/app/Nova/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Nova/Resource.php -------------------------------------------------------------------------------- /product_service/app/Nova/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Nova/User.php -------------------------------------------------------------------------------- /product_service/app/Observers/KafkaProductObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Observers/KafkaProductObserver.php -------------------------------------------------------------------------------- /product_service/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /product_service/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /product_service/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /product_service/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /product_service/app/Providers/NovaServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Providers/NovaServiceProvider.php -------------------------------------------------------------------------------- /product_service/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /product_service/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/artisan -------------------------------------------------------------------------------- /product_service/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/bootstrap/app.php -------------------------------------------------------------------------------- /product_service/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /product_service/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/composer.json -------------------------------------------------------------------------------- /product_service/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/composer.lock -------------------------------------------------------------------------------- /product_service/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/app.php -------------------------------------------------------------------------------- /product_service/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/auth.php -------------------------------------------------------------------------------- /product_service/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/broadcasting.php -------------------------------------------------------------------------------- /product_service/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/cache.php -------------------------------------------------------------------------------- /product_service/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/database.php -------------------------------------------------------------------------------- /product_service/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/filesystems.php -------------------------------------------------------------------------------- /product_service/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/hashing.php -------------------------------------------------------------------------------- /product_service/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/logging.php -------------------------------------------------------------------------------- /product_service/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/mail.php -------------------------------------------------------------------------------- /product_service/config/nova.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/nova.php -------------------------------------------------------------------------------- /product_service/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/queue.php -------------------------------------------------------------------------------- /product_service/config/saml2/PRODUCT_idp_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/saml2/PRODUCT_idp_settings.php -------------------------------------------------------------------------------- /product_service/config/saml2/test_idp_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/saml2/test_idp_settings.php -------------------------------------------------------------------------------- /product_service/config/saml2_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/saml2_settings.php -------------------------------------------------------------------------------- /product_service/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/services.php -------------------------------------------------------------------------------- /product_service/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/session.php -------------------------------------------------------------------------------- /product_service/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/config/view.php -------------------------------------------------------------------------------- /product_service/database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/database/.gitignore -------------------------------------------------------------------------------- /product_service/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/database/factories/UserFactory.php -------------------------------------------------------------------------------- /product_service/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /product_service/database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /product_service/database/migrations/2018_01_01_000000_create_action_events_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/database/migrations/2018_01_01_000000_create_action_events_table.php -------------------------------------------------------------------------------- /product_service/database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /product_service/database/migrations/2019_08_25_202953_product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/database/migrations/2019_08_25_202953_product.php -------------------------------------------------------------------------------- /product_service/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /product_service/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/docker-compose.yml -------------------------------------------------------------------------------- /product_service/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/entrypoint.sh -------------------------------------------------------------------------------- /product_service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/package.json -------------------------------------------------------------------------------- /product_service/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/phpunit.xml -------------------------------------------------------------------------------- /product_service/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/public/.htaccess -------------------------------------------------------------------------------- /product_service/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /product_service/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/public/index.php -------------------------------------------------------------------------------- /product_service/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /product_service/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/public/web.config -------------------------------------------------------------------------------- /product_service/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/readme.md -------------------------------------------------------------------------------- /product_service/resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /product_service/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/resources/js/bootstrap.js -------------------------------------------------------------------------------- /product_service/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/resources/lang/en/auth.php -------------------------------------------------------------------------------- /product_service/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /product_service/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /product_service/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/resources/lang/en/validation.php -------------------------------------------------------------------------------- /product_service/resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /product_service/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /product_service/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/routes/api.php -------------------------------------------------------------------------------- /product_service/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/routes/channels.php -------------------------------------------------------------------------------- /product_service/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/routes/console.php -------------------------------------------------------------------------------- /product_service/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/routes/web.php -------------------------------------------------------------------------------- /product_service/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/server.php -------------------------------------------------------------------------------- /product_service/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /product_service/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /product_service/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/storage/framework/.gitignore -------------------------------------------------------------------------------- /product_service/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /product_service/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /product_service/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /product_service/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /product_service/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /product_service/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /product_service/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/test.txt -------------------------------------------------------------------------------- /product_service/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/tests/CreatesApplication.php -------------------------------------------------------------------------------- /product_service/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /product_service/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/tests/TestCase.php -------------------------------------------------------------------------------- /product_service/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /product_service/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/product_service/webpack.mix.js -------------------------------------------------------------------------------- /rental_service/.docker/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/.docker/nginx/Dockerfile -------------------------------------------------------------------------------- /rental_service/.docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/.docker/nginx/nginx.conf -------------------------------------------------------------------------------- /rental_service/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/.editorconfig -------------------------------------------------------------------------------- /rental_service/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/.env -------------------------------------------------------------------------------- /rental_service/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/.env.example -------------------------------------------------------------------------------- /rental_service/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/.gitattributes -------------------------------------------------------------------------------- /rental_service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/.gitignore -------------------------------------------------------------------------------- /rental_service/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/.styleci.yml -------------------------------------------------------------------------------- /rental_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/Dockerfile -------------------------------------------------------------------------------- /rental_service/app/Console/Commands/KafkaConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Console/Commands/KafkaConsumer.php -------------------------------------------------------------------------------- /rental_service/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Console/Kernel.php -------------------------------------------------------------------------------- /rental_service/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /rental_service/app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Controllers/Auth/ConfirmPasswordController.php -------------------------------------------------------------------------------- /rental_service/app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /rental_service/app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /rental_service/app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /rental_service/app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /rental_service/app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /rental_service/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /rental_service/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Kernel.php -------------------------------------------------------------------------------- /rental_service/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /rental_service/app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /rental_service/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /rental_service/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /rental_service/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /rental_service/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /rental_service/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /rental_service/app/Kafka/CustomerHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Kafka/CustomerHandler.php -------------------------------------------------------------------------------- /rental_service/app/Kafka/ProductHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Kafka/ProductHandler.php -------------------------------------------------------------------------------- /rental_service/app/Models/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Models/Customer.php -------------------------------------------------------------------------------- /rental_service/app/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Models/Order.php -------------------------------------------------------------------------------- /rental_service/app/Models/OrderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Models/OrderItem.php -------------------------------------------------------------------------------- /rental_service/app/Models/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Models/Payment.php -------------------------------------------------------------------------------- /rental_service/app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Models/Product.php -------------------------------------------------------------------------------- /rental_service/app/Models/Traits/Uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Models/Traits/Uuid.php -------------------------------------------------------------------------------- /rental_service/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Models/User.php -------------------------------------------------------------------------------- /rental_service/app/Nova/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Nova/Customer.php -------------------------------------------------------------------------------- /rental_service/app/Nova/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Nova/Order.php -------------------------------------------------------------------------------- /rental_service/app/Nova/OrderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Nova/OrderItem.php -------------------------------------------------------------------------------- /rental_service/app/Nova/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Nova/Payment.php -------------------------------------------------------------------------------- /rental_service/app/Nova/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Nova/Product.php -------------------------------------------------------------------------------- /rental_service/app/Nova/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Nova/Resource.php -------------------------------------------------------------------------------- /rental_service/app/Nova/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Nova/User.php -------------------------------------------------------------------------------- /rental_service/app/Observers/OrderItemObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Observers/OrderItemObserver.php -------------------------------------------------------------------------------- /rental_service/app/Observers/OrderObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Observers/OrderObserver.php -------------------------------------------------------------------------------- /rental_service/app/Observers/PaymentObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Observers/PaymentObserver.php -------------------------------------------------------------------------------- /rental_service/app/Policies/CustomerPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Policies/CustomerPolicy.php -------------------------------------------------------------------------------- /rental_service/app/Policies/ProductPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Policies/ProductPolicy.php -------------------------------------------------------------------------------- /rental_service/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /rental_service/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /rental_service/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /rental_service/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /rental_service/app/Providers/NovaServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Providers/NovaServiceProvider.php -------------------------------------------------------------------------------- /rental_service/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /rental_service/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/artisan -------------------------------------------------------------------------------- /rental_service/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/bootstrap/app.php -------------------------------------------------------------------------------- /rental_service/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /rental_service/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/composer.json -------------------------------------------------------------------------------- /rental_service/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/composer.lock -------------------------------------------------------------------------------- /rental_service/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/app.php -------------------------------------------------------------------------------- /rental_service/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/auth.php -------------------------------------------------------------------------------- /rental_service/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/broadcasting.php -------------------------------------------------------------------------------- /rental_service/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/cache.php -------------------------------------------------------------------------------- /rental_service/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/database.php -------------------------------------------------------------------------------- /rental_service/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/filesystems.php -------------------------------------------------------------------------------- /rental_service/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/hashing.php -------------------------------------------------------------------------------- /rental_service/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/logging.php -------------------------------------------------------------------------------- /rental_service/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/mail.php -------------------------------------------------------------------------------- /rental_service/config/nova.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/nova.php -------------------------------------------------------------------------------- /rental_service/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/queue.php -------------------------------------------------------------------------------- /rental_service/config/saml2/RENTAL_idp_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/saml2/RENTAL_idp_settings.php -------------------------------------------------------------------------------- /rental_service/config/saml2/test_idp_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/saml2/test_idp_settings.php -------------------------------------------------------------------------------- /rental_service/config/saml2_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/saml2_settings.php -------------------------------------------------------------------------------- /rental_service/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/services.php -------------------------------------------------------------------------------- /rental_service/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/session.php -------------------------------------------------------------------------------- /rental_service/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/config/view.php -------------------------------------------------------------------------------- /rental_service/database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/database/.gitignore -------------------------------------------------------------------------------- /rental_service/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/database/factories/UserFactory.php -------------------------------------------------------------------------------- /rental_service/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /rental_service/database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /rental_service/database/migrations/2018_01_01_000000_create_action_events_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/database/migrations/2018_01_01_000000_create_action_events_table.php -------------------------------------------------------------------------------- /rental_service/database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /rental_service/database/migrations/2019_08_25_202953_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/database/migrations/2019_08_25_202953_customer.php -------------------------------------------------------------------------------- /rental_service/database/migrations/2019_08_25_202953_product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/database/migrations/2019_08_25_202953_product.php -------------------------------------------------------------------------------- /rental_service/database/migrations/2019_09_05_110116_create_orders_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/database/migrations/2019_09_05_110116_create_orders_table.php -------------------------------------------------------------------------------- /rental_service/database/migrations/2019_10_09_133938_order_item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/database/migrations/2019_10_09_133938_order_item.php -------------------------------------------------------------------------------- /rental_service/database/migrations/2019_10_09_133938_payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/database/migrations/2019_10_09_133938_payment.php -------------------------------------------------------------------------------- /rental_service/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /rental_service/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/docker-compose.yml -------------------------------------------------------------------------------- /rental_service/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/entrypoint.sh -------------------------------------------------------------------------------- /rental_service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/package.json -------------------------------------------------------------------------------- /rental_service/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/phpunit.xml -------------------------------------------------------------------------------- /rental_service/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/public/.htaccess -------------------------------------------------------------------------------- /rental_service/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rental_service/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/public/index.php -------------------------------------------------------------------------------- /rental_service/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /rental_service/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/public/web.config -------------------------------------------------------------------------------- /rental_service/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/readme.md -------------------------------------------------------------------------------- /rental_service/resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /rental_service/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/resources/js/bootstrap.js -------------------------------------------------------------------------------- /rental_service/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/resources/lang/en/auth.php -------------------------------------------------------------------------------- /rental_service/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /rental_service/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /rental_service/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/resources/lang/en/validation.php -------------------------------------------------------------------------------- /rental_service/resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /rental_service/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /rental_service/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/routes/api.php -------------------------------------------------------------------------------- /rental_service/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/routes/channels.php -------------------------------------------------------------------------------- /rental_service/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/routes/console.php -------------------------------------------------------------------------------- /rental_service/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/routes/web.php -------------------------------------------------------------------------------- /rental_service/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/server.php -------------------------------------------------------------------------------- /rental_service/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /rental_service/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /rental_service/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/storage/framework/.gitignore -------------------------------------------------------------------------------- /rental_service/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /rental_service/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /rental_service/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /rental_service/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /rental_service/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /rental_service/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /rental_service/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/tests/CreatesApplication.php -------------------------------------------------------------------------------- /rental_service/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /rental_service/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/tests/TestCase.php -------------------------------------------------------------------------------- /rental_service/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /rental_service/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/jornada-microservicos/HEAD/rental_service/webpack.mix.js --------------------------------------------------------------------------------