{"id":18831507,"url":"https://github.com/maxbratuta/therapeutic-consultations-app","last_synced_at":"2026-04-08T16:02:22.911Z","repository":{"id":171045908,"uuid":"347380537","full_name":"maxbratuta/therapeutic-consultations-app","owner":"maxbratuta","description":"📋 Pet-project for therapeutic consultations.","archived":false,"fork":false,"pushed_at":"2021-05-07T13:52:46.000Z","size":1178,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-08T02:43:38.224Z","etag":null,"topics":["axios","composer","ddd","laravel","momentjs","npm","php","sweetalert2","tailwindcss","visjs"],"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/maxbratuta.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}},"created_at":"2021-03-13T13:38:44.000Z","updated_at":"2021-05-07T13:52:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"40e11aad-838a-4a19-bbc0-1736c10604db","html_url":"https://github.com/maxbratuta/therapeutic-consultations-app","commit_stats":null,"previous_names":["maxbratuta/therapeutic-consultations-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/maxbratuta/therapeutic-consultations-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxbratuta%2Ftherapeutic-consultations-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxbratuta%2Ftherapeutic-consultations-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxbratuta%2Ftherapeutic-consultations-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxbratuta%2Ftherapeutic-consultations-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxbratuta","download_url":"https://codeload.github.com/maxbratuta/therapeutic-consultations-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxbratuta%2Ftherapeutic-consultations-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31562697,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["axios","composer","ddd","laravel","momentjs","npm","php","sweetalert2","tailwindcss","visjs"],"created_at":"2024-11-08T01:54:45.269Z","updated_at":"2026-04-08T16:02:22.896Z","avatar_url":"https://github.com/maxbratuta.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Therapeutic Consultations\n\n![Therapeutic Consultations](https://i.ibb.co/7tjNfnn/therapeutic-consultations.png)\n\nCreate a project for displaying therapeutic consultation.\n\n\n## Used Libraries:\n\n- [Tailwind CSS](https://tailwindcss.com/)\n- [axios](https://www.npmjs.com/package/axios)\n- [vis.js](https://visjs.github.io/vis-timeline/docs/timeline/index.html)\n- [moment.js](https://momentjs.com/)\n- [SweetAlert 2](https://sweetalert2.github.io/)\n\n\n## Installation Overview\n\n**1. Install prerequisites.**\n- nginx\n- php-fpm 7.4\n- mysql 8\n- composer\n- nodejs\n- npm\n\n**2. Clone project.**\n\n```sh\ngit clone https://github.com/maxbratuta/therapeutic-consultations-app.git\n```\n\n**3. Configure nginx.**\n```sh\nserver {\n\n    listen 80;\n    listen [::]:80;\n\n    server_name therapeutic-consultations-app.loc;\n    root /var/www/therapeutic-consultations-app/public;\n    index index.php index.html index.htm;\n\n    location / {\n        try_files $uri $uri/ /index.php?$query_string;\n    }\n    \n    location ~ \\.php$ {\n        try_files $uri /index.php =404;\n        fastcgi_split_path_info ^(.+\\.php)(/.+)$;\n        fastcgi_pass php-fpm:9000;\n        fastcgi_index index.php;\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\n        include fastcgi_params;\n    }\n}\n```\n\n**4. Create MySQL database.**\n\n**5. Configure application.**\n\nCopy `/path_to_project/.env.example` file to `/path_to_project/.env`.\nThen add right configuration information to the new file.\n- database access info\n- application URL info\n- ect.\n\n**6. Run install script.**\n\nRun next command to install external libraries.\n```sh\ncomposer install\n```\n\n**7. Run scripts using next command in `/path_to_project/` directory.**\n```sh\nphp artisan migrate\n```\n\n**8. Run the install script for front.**\n\nRun next command to install external libraries.\n```sh\nnpm install\n```\n\n**9. Build frontend.**\n\nRun next command to build external libraries.\n```sh\nnpm run *env*\n```\n\n## Generate Test Data\n\nRun next command to generate test data.\n\n```sh\nphp artisan db:seed\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxbratuta%2Ftherapeutic-consultations-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxbratuta%2Ftherapeutic-consultations-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxbratuta%2Ftherapeutic-consultations-app/lists"}