{"id":19521551,"url":"https://github.com/cryptedsnow/called-system","last_synced_at":"2026-05-07T16:33:48.160Z","repository":{"id":222212763,"uuid":"742614028","full_name":"CryptedSnow/called-system","owner":"CryptedSnow","description":"Call management application using Laravel (codes in Portuguese).","archived":false,"fork":false,"pushed_at":"2026-04-02T13:55:31.000Z","size":1068,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-03T02:43:11.141Z","etag":null,"topics":["laravel","laravel-ui-bootstrap","php"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CryptedSnow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-01-12T21:48:07.000Z","updated_at":"2026-04-02T13:55:45.000Z","dependencies_parsed_at":"2024-03-07T21:28:08.975Z","dependency_job_id":"328c7bdf-7c77-475f-a4fd-7487ff844f76","html_url":"https://github.com/CryptedSnow/called-system","commit_stats":null,"previous_names":["iury189/called-system","cryptedsnow/called-system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CryptedSnow/called-system","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CryptedSnow%2Fcalled-system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CryptedSnow%2Fcalled-system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CryptedSnow%2Fcalled-system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CryptedSnow%2Fcalled-system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CryptedSnow","download_url":"https://codeload.github.com/CryptedSnow/called-system/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CryptedSnow%2Fcalled-system/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32745843,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["laravel","laravel-ui-bootstrap","php"],"created_at":"2024-11-11T00:33:13.299Z","updated_at":"2026-05-07T16:33:48.155Z","avatar_url":"https://github.com/CryptedSnow.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Attention!\n\nFollow the steps to set up the application on your local machine.\n\n1 - Run the ```composer install``` command to create ```vendor``` folder.\n\n```\ncomposer install \n```\n\n2 - Create ```.env``` file:\n```\ncp .env.example .env\n```\n\n3 - Generate crypted key (Fill ```APP_KEY=``` to ```.env``` file):\n```\nphp artisan key:generate\n```\n\n4 - In `.env` file set the following snippet to connect the application to your database (Check your database, it is necessary create a database to run the migrations).\n```\n# MySQL\nDB_CONNECTION=mysql\nDB_HOST=127.0.0.1\nDB_PORT=3306\nDB_DATABASE=name_database\nDB_USERNAME=root\nDB_PASSWORD=\n\n# PostgreSQL\nDB_CONNECTION=pgsql\nDB_HOST=127.0.0.1\nDB_PORT=5432\nDB_DATABASE=name_database\nDB_USERNAME=postgres\nDB_PASSWORD=\n```\n\n5 - Execute the migrations.\n\n```\nphp artisan migrate\n```\n\n6 - Use the commands to create registers to some tables.\n\n```\nphp artisan db:seed\n```\n\n7 - View the migrations been dones and check status them.\n```\nphp artisan migrate:status\n```\n\n8 - Run the following command to install Javascript dependencies. (Before, check the existence of `Node` and `NPM` on your machine).\n```\nnpm install\n```\n\n9 - Run the following command to compile and optimize JavaScript files.\n```\n# Run Vite to server development\nnpm run dev\n \n# Create and version assets for production... (I usually choose this on your local machine)\nnpm run build\n```\n\n10 - Run the following command to start Apache to run the application.\n```\nphp artisan serve\n```\n\n## Docker environment\n\nBefore run containers, you can choose PHP version of your preference (```8.0```,```8.1```,```8.2```,```8.3```,```8.4``` and ```8.5```). In ```docker-compose.yml``` to ```context```  change the version:\n\n```\n// Example: Change version to 8.0 \ncontext: ./docker/version\n```\n\n1 - Power on the containers:\n```\ndocker-compose up -d\n```\n\n2 - Run the ```composer install``` command to create ```vendor``` folder:\n```\ndocker-compose exec app composer install\n```\n\n3 - Create ```.env``` file:\n```\ndocker-compose exec app cp .env.example .env  \n```\n\n4 - Generate crypted key (Fill ```APP_KEY=``` to ```.env``` file):\n```\ndocker-compose exec app php artisan key:generate\n```\n\nYou can't maintain two databases working at same time, it's necessary choose.\n```\n# Avoid conflict to mysql phpmyadmin\ndocker-compose stop pgsql pgadmin\n\n# Avoid conflict to pgsql pgadmin\ndocker-compose stop mysql phpmyadmin\n```\n\nRemember, before you change of database, run ```docker-compose down```, modify the ```.env``` file snippet to connect the application to database container and run ```docker-compose up -d``` again.\n\n5 - In ```.env``` file set the following snippet to connect the application to database container from **Docker**:\n```\n# MySQL\nDB_CONNECTION=mysql\nDB_HOST=mysql\nDB_PORT=3306\nDB_DATABASE=called-system\nDB_USERNAME=user\nDB_PASSWORD=password\n\n# PostgreSQL\nDB_CONNECTION=pgsql\nDB_HOST=pgsql\nDB_PORT=5432\nDB_DATABASE=called-system\nDB_USERNAME=postgres\nDB_PASSWORD=secret\n```\n\n6 - To performate the migrations, you need use the command:\n```\ndocker-compose exec app php artisan migrate\n```\n\n7 - Use the commands to perfomate the seeders:\n```\ndocker-compose exec app php artisan db:seed\n```\n\n8 - View the migrations been dones and check status them.\n```\ndocker-compose exec app php artisan migrate:status\n```\n\n9 - Run the following command to install Javascript dependencies.\n```\ndocker-compose exec app npm install\n```\n\n10 - Run the following command to compile and optimize JavaScript files.\n```\n# Run Vite to server development\ndocker-compose exec app npm run dev\n\n# Create and version assets for production... (I usually choose this on your local machine)\ndocker-compose exec app npm run build\n```\n\n11 - To power off the containers before exit from application, use the command:\n\n```\ndocker-compose down\n```\n\nWith help of [Laravel Spatie](https://spatie.be/docs/laravel-permission/v6/introduction), exist two roles user: **Admin** and **User**. Making certains roles user has more privileges than others, it is very important you run the seeds to those users be created.\n\n* Name: Mario\n```\nEmail: mario@world.com\nPassword: password\nRole: Admin, User\nPermission: Many permissions\nCompanies: Yoshi's island, Ghost House, Valley of Bowser\n```\n\n* Name: Luigi\n```\nEmail: luigi@world.com\nPassword: password\nRole: User\nPermission: Many permissions\nCompanies: Ghost House\n```\n\n* Name: Bowser\n```\nEmail: bowser@world.com\nPassword: password\nRole: User\nPermission: Many permissions\nCompanies: Valley of Bowser\n```\n\nSome functionality are exclusives to **Admin**, others types of roles has not the same privileges.\n\n### Docker environment addresses\n- phpMyAdmin: http://localhost:8081\n- pgAdmin: http://localhost:5050\n    - User: `admin@admin.com`\n    - Password: `admin`\n\n### Packages to study (They are used in this application)\n\n- **[Laravel Spatie](https://spatie.be/docs/laravel-permission/v6/introduction)**\n- **[LogViewer](https://github.com/ARCANEDEV/LogViewer)**\n- **[laravel-pt-BR-localization](https://github.com/lucascudo/laravel-pt-BR-localization)**\n- **[pt-br-validator](https://github.com/LaravelLegends/pt-br-validator)**\n- **[sweetalert2](https://sweetalert2.github.io/)**\n- **[select2](https://select2.org/)**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcryptedsnow%2Fcalled-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcryptedsnow%2Fcalled-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcryptedsnow%2Fcalled-system/lists"}