{"id":23585516,"url":"https://github.com/hkaar/caulio","last_synced_at":"2025-11-03T05:30:32.121Z","repository":{"id":234607978,"uuid":"789234232","full_name":"Hkaar/Caulio","owner":"Hkaar","description":"A forum website created with Laravel","archived":false,"fork":false,"pushed_at":"2024-05-13T12:45:41.000Z","size":1571,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-12-27T03:15:12.045Z","etag":null,"topics":["chat","laravel","webapp"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Hkaar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-04-20T01:52:07.000Z","updated_at":"2024-07-30T05:57:10.000Z","dependencies_parsed_at":"2024-05-13T13:48:18.191Z","dependency_job_id":null,"html_url":"https://github.com/Hkaar/Caulio","commit_stats":null,"previous_names":["hkaar/caulio"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hkaar%2FCaulio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hkaar%2FCaulio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hkaar%2FCaulio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hkaar%2FCaulio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Hkaar","download_url":"https://codeload.github.com/Hkaar/Caulio/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239412485,"owners_count":19634016,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["chat","laravel","webapp"],"created_at":"2024-12-27T03:15:18.935Z","updated_at":"2025-11-03T05:30:32.092Z","avatar_url":"https://github.com/Hkaar.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Caulio\n\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n![Workflow Status](https://github.com/Hkaar/Caulio/workflows/ci/badge.svg)\n\nA web-based forum website created using Vue.js and Laravel\n\n## Requirements\n\n- PHP version \u003e= 8.1\n- Composer\n- Node.js\n\n## User Guide\n\nHere's a guide for any users who want to host this on their own\n\nClone the repo\n\n```bash\ngit clone https://github.com/Hkaar/Caulio.git\n```\n\nGo to the project directory\n\n```bash\ncd Caulio\n```\n\nInstall all the php dependecies\n\n```bash\ncomposer install\n```\n\nInstall all the node dependecies\n\n```bash\nnpm install\n```\n\nRun the migrations\n\n```bash\nphp artisan migrate\n```\n\nGenerate the app key\n\n```bash\nphp artisan key:generate\n```\n\nAnd then serve it\n\n```bash\nphp artisan serve\n```\n\n## Contributor Guide\n\nHere we will list the guide on how to contribute to this project\n\n### Step 1 : Setup the project\n\nClone the repo\n\n```bash\ngit clone https://github.com/Hkaar/Caulio.git\n```\n\nGo to the project directory\n\n```bash\ncd Caulio\n```\n\nInstall all the php dependecies\n\n```bash\ncomposer install\n```\n\nInstall all the node dependecies\n\n```bash\nnpm install\n```\n\nSetup the env variables\n\n`Bash :`\n\n```bash\nmv .env.example .env \u0026\u0026 cp .env .env.example\n```\n\n`Powershell :`\n\n```powershell\nRename-Item .\\.env.example .\\.env ; Copy-Item .\\.env .\\.env.example\n```\n\nRun the migrations\n\n```bash\nphp artisan migrate\n```\n\nGenerate the app key\n\n```bash\nphp artisan key:generate\n```\n\nAnd then serve to test if it's working\n\n```bash\nphp artisan serve\n```\n\n### Step 2 : Work Setup\n\nGo to the project directory (if you haven't done so)\n\n```bash\ncd Caulio\n```\n\nUpdate the master branch first\n\n```bash\ngit pull origin master\n```\n\nCreate a branch for your feature\n\n```bash\ngit branch \u003cyour-feature\u003e\n```\n\nAnd then switch your branch to your newly created one\n\n```bash\ngit checkout \u003cyour-branch\u003e\n```\n\n### Step 3 : How to work\n\nIf you want to save something, first add it to staging\nby adding the root\n\n```bash\ngit add .\n```\n\nor by adding a specific file\n\n```bash\ngit add \u003cfile\u003e\n```\n\nAnd then commiting it to the branch\n\n```bash\ngit commit -m \"\u003cdetails-about-your change\u003e\"\n```\n\n### Step 4 : Uploading\n\nOnce done with developing your feature, upload it to the repo\nby pushing it\n\n```bash\ngit push origin \u003cyour-branch\u003e\n```\n\nAnd then create a pull request for us to review and merge\n\n### Step 5 : Cleanup\n\nIf the pull request is accepted, update your local repo with the changes\n\n```bash\ngit checkout master\ngit pull origin master\n```\n\n```bash\ngit branch -d \u003clocal-branch-name\u003e\n```\n\n### Tips\n\nDon't forget to always do a pull from the remote master to update your local repo!\n\n```bash\ngit pull origin master\n```\n\nAnd that's all, btw here's a table for your reward\n\nʕノ•ᴥ•ʔノ ︵ ┻━┻\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhkaar%2Fcaulio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhkaar%2Fcaulio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhkaar%2Fcaulio/lists"}