{"id":18486331,"url":"https://github.com/maxgfr/ticke","last_synced_at":"2026-04-28T15:41:24.438Z","repository":{"id":40392906,"uuid":"129055915","full_name":"maxgfr/ticke","owner":"maxgfr","description":"Ticke Application","archived":false,"fork":false,"pushed_at":"2024-02-29T20:20:37.000Z","size":2080,"stargazers_count":0,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-21T22:39:45.403Z","etag":null,"topics":["backend","backoffice","laravel","ticket","ticket-generator"],"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/maxgfr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-04-11T07:51:18.000Z","updated_at":"2020-07-05T07:30:17.000Z","dependencies_parsed_at":"2024-02-29T21:44:13.394Z","dependency_job_id":null,"html_url":"https://github.com/maxgfr/ticke","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/maxgfr/ticke","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxgfr%2Fticke","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxgfr%2Fticke/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxgfr%2Fticke/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxgfr%2Fticke/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxgfr","download_url":"https://codeload.github.com/maxgfr/ticke/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxgfr%2Fticke/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32387920,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T14:34:11.604Z","status":"ssl_error","status_checked_at":"2026-04-28T14:32:37.009Z","response_time":56,"last_error":"SSL_read: 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":["backend","backoffice","laravel","ticket","ticket-generator"],"created_at":"2024-11-06T12:49:02.340Z","updated_at":"2026-04-28T15:41:24.392Z","avatar_url":"https://github.com/maxgfr.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ticke\n\n## Initialize\n\n### 1) In .env of laravel app, add :\n\n```\nDB_HOST=mysql\n\nREDIS_HOST=redis\n\nQUEUE_HOST=beanstalkd\n```\n\n### 2) In the app directory:\n\n```\ngit clone https://github.com/Laradock/laradock.git\ncd laradock\ncp env-example .env\n```\n\n### 3) In laradock/, open .env and add :\n\n```\nAPP_CODE_PATH_HOST=../\n```\n\n### 4) Launch :\n\n```\ndocker-compose up -d nginx mysql phpmyadmin redis workspace\n```\n\n### Commands\n\nTo connect to container :\n```\ndocker-compose exec workspace bash\ndocker-compose exec workspace mysql\n```\n\n### Problems :\n\n#### 1° In laradock/\n\nRestart containers :\n```\ndocker-compose down\ndocker-compose up -d nginx mysql phpmyadmin redis workspace\n```\n\nConnect to a container :\n```\ndocker-compose exec workspace bash\ncomposer install\nphp artisan key:generate\nphp artisan cache:clear\nphp artisan config:cache\nphp artisan migrate\n```\n\nSwitch from mysql to mariadb :\n\nTo use with MariaDB, in laradock open .env and set PMA_DB_ENGINE=mysql to PMA_DB_ENGINE=mariadb\n```\ndocker-compose down\ndocker-compose up -d nginx mariadb phpmyadmin redis workspace\n```\nThen, in .env of the app :\n```\nDB_HOST=mariadb\nDB_PORT=3306\nDB_DATABASE=default\nDB_USERNAME=root\nDB_PASSWORD=root\n```\n\n### 2° In app directory :\n```\nphp artisan cache:clear\nphp artisan config:cache\n```\n\n```\nchmod -R 777 storage bootstrap/cache\n```\n\n### 3° JWT - Laravel 5.6 :\n\nhttps://github.com/tymondesigns/jwt-auth/issues/1038\n\n## Test API\n\n### Register\n\n```shell\ncurl -X POST http://localhost:8000/api/register \\\n -H \"Accept: application/json\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\"name\": \"Doe\", \"firstname\": \"John\", \"mobile\": \"0621425347\", \"email\": \"john-doe@max.com\", \"password\": \"maxmaxmax\", \"password-confirm\": \"maxmaxmax\"}'\n```\n### Login\n\n```shell\ncurl -X POST http://localhost:8000/api/login \\\n -H \"Accept: application/json\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\"email\": \"john-doe@max.com\", \"password\": \"maxmaxmax\"}'\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxgfr%2Fticke","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxgfr%2Fticke","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxgfr%2Fticke/lists"}