{"id":16582999,"url":"https://github.com/heyhusen/portpoliwo","last_synced_at":"2026-02-28T15:03:01.293Z","repository":{"id":36990297,"uuid":"267029406","full_name":"heyhusen/portpoliwo","owner":"heyhusen","description":"A simple headless CMS for personal site. Powered by Laravel 8 \u0026 Vue 3.","archived":false,"fork":false,"pushed_at":"2025-07-18T23:49:30.000Z","size":5496,"stargazers_count":9,"open_issues_count":20,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-19T04:04:29.888Z","etag":null,"topics":["api","laravel","php","portfolio","sanctum","spa","vue","vuejs"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/heyhusen.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null}},"created_at":"2020-05-26T11:53:07.000Z","updated_at":"2025-04-14T09:32:21.000Z","dependencies_parsed_at":"2023-01-17T12:01:40.519Z","dependency_job_id":"a182635b-7658-45f3-8b2a-41f20a5e9e87","html_url":"https://github.com/heyhusen/portpoliwo","commit_stats":null,"previous_names":["heyhusen/portpoliwo","hapakaien/portpoliwo"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/heyhusen/portpoliwo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heyhusen%2Fportpoliwo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heyhusen%2Fportpoliwo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heyhusen%2Fportpoliwo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heyhusen%2Fportpoliwo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/heyhusen","download_url":"https://codeload.github.com/heyhusen/portpoliwo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heyhusen%2Fportpoliwo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29938994,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T13:49:17.081Z","status":"ssl_error","status_checked_at":"2026-02-28T13:48:50.396Z","response_time":90,"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":["api","laravel","php","portfolio","sanctum","spa","vue","vuejs"],"created_at":"2024-10-11T22:34:42.131Z","updated_at":"2026-02-28T15:02:59.267Z","avatar_url":"https://github.com/heyhusen.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Portpoliwo\n\n[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/hapakaien/portpoliwo/CI?label=CI\u0026style=flat-square)](https://github.com/hapakaien/portpoliwo/actions) ![GitHub](https://img.shields.io/github/license/hapakaien/portpoliwo?style=flat-square)\n\n![Screenshot](images/cover.jpg)\n\nPortpoliwo is a simple headless CMS for personal portfolio site. This project\nuses [Laravel](https://github.com/laravel/laravel) as back-end, and\n[Vue.js](https://github.com/vuejs/vue) as front-end (SPA).  \n\nHere are some of the features it includes:\n\n- Easy authentication with Laravel Sanctum\n- Using Redis as session and cache driver\n- Storage flexibility with S3-compatible object storage\n- Replace Laravel Mix with Vite for faster front-end development\n- Lightweight UI with Headless UI, Oruga UI, Tiptap, SVG icons and Windi CSS\n\n## Setup\n\nIf you are interested in trying Portpoliwo, you can do the following.\n\n### Local\n\nFor local setup, you need at least 2 terminals open at the same time.\n\n1. Clone this repository to your machine.\n\n   ```bash\n   git clone -b v3 --depth 1 --single-branch https://github.com/hapakaien/portpoliwo.git \u0026\u0026 cd portpoliwo\n   ```\n\n2. Install dependencies.\n\n    ```bash\n    composer install \u0026\u0026 pnpm install\n    ```\n\n3. Copy `.env.example` file to `.env`.\n\n\t```bash\n\tcp .env.example .env\n\t```\n\tThis file will be used by Laravel, Vue, and Docker Compose during development.\n\n4. Run all managed services with Docker Compose, and wait for all containers to run perfectly.\n\n   ```bash\n   docker-compose up -d\n   ```\n\n5. Set up application with artisan command.\n\n   ```bash\n   php artisan app:install\n   ```\n\n6. Start Vue development server.\n\n   ```bash\n   pnpm dev\n   ```\n\n7. Open second terminal at the same location, and start Laravel development server.\n\n   ```bash\n   php artisan serve\n   ```\n   \n   If all goes well, you can immediately try opening http://localhost:8000 in the browser.\n   \n   You can try logging in with the account in the [database/seeders/UsersTableSeeder.php](database/seeders/UsersTableSeeder.php) file.\n\n## Testing\n\n### Laravel\n\nTo perform the test, you can start with steps 1 and 2 in [local setup](#local). After that, you can proceed with the following steps.\n\n1. Run all managed services with Docker Compose, and wait for all containers to run perfectly.\n\n   ```bash\n   docker-compose -p portpoliwo-test --env-file .env.testing\n   ```\n\n2. Run test.\n\n   ```bash\n   php artisan test\n   ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheyhusen%2Fportpoliwo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fheyhusen%2Fportpoliwo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheyhusen%2Fportpoliwo/lists"}