{"id":22370020,"url":"https://github.com/fazers/portfolio-server","last_synced_at":"2026-05-08T08:04:48.352Z","repository":{"id":58508267,"uuid":"527708030","full_name":"FaZeRs/portfolio-server","owner":"FaZeRs","description":null,"archived":false,"fork":false,"pushed_at":"2022-11-14T07:30:56.000Z","size":58,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-26T16:26:20.107Z","etag":null,"topics":["docker","docker-compose","traefik"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/FaZeRs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"custom":["https://paypal.me/naurislinde"]}},"created_at":"2022-08-22T19:39:39.000Z","updated_at":"2022-09-27T11:10:48.000Z","dependencies_parsed_at":"2023-01-22T00:51:37.110Z","dependency_job_id":null,"html_url":"https://github.com/FaZeRs/portfolio-server","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/FaZeRs/portfolio-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FaZeRs%2Fportfolio-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FaZeRs%2Fportfolio-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FaZeRs%2Fportfolio-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FaZeRs%2Fportfolio-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FaZeRs","download_url":"https://codeload.github.com/FaZeRs/portfolio-server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FaZeRs%2Fportfolio-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32772048,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T02:36:36.067Z","status":"ssl_error","status_checked_at":"2026-05-08T02:36:07.210Z","response_time":54,"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":["docker","docker-compose","traefik"],"created_at":"2024-12-04T19:31:43.694Z","updated_at":"2026-05-08T08:04:48.330Z","avatar_url":"https://github.com/FaZeRs.png","language":"Shell","funding_links":["https://paypal.me/naurislinde"],"categories":[],"sub_categories":[],"readme":"# Portfolio Server\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n\n| Repository                                                          | Info               |\n|---------------------------------------------------------------------|--------------------|\n| [portfolio-client](https://github.com/FaZeRs/portfolio-client)      | Frontend           |\n| [portfolio-api](https://github.com/FaZeRs/portfolio-api)            | Rest API           |\n| [portfolio-server](https://github.com/FaZeRs/portfolio-server)      | Docker Environment |\n\n## Features\n\n- ⚡️[Traefik 2](https://github.com/traefik/traefik/) - The Cloud Native Application Proxy\n\n- 💻 [MySQL](https://github.com/mysql/mysql-server) - Database\n\n- 🍪 [Redis](https://github.com/redis/redis) - In-Memory database\n\n- 📦 [Minio](https://github.com/minio/minio) - Multi-Cloud Object Storage\n\n- 👀 [Watchtower](https://github.com/containrrr/watchtower) - Automating Docker container base image updates\n\n## Installation\n\nCreate a `.env` file from the template `.env.template` file.\n```bash\ncp .env.template .env\n```\n\nGenerate public and private key pair for jwt authentication:\n\n### With docker\n\nRun this command:\n```bash\n./scripts/generate-jwt-keys\n```\n\nIt will output something like this. You only need to add it to your `.env` file.\n```\nTo setup the JWT keys, please add the following values to your .env file:\nAPI_JWT_PUBLIC_KEY_BASE64=\"(long base64 content)\"\nAPI_JWT_PRIVATE_KEY_BASE64=\"(long base64 content)\"\n```\n\n### Without docker\n\n```bash\n$ ssh-keygen -t rsa -b 2048 -m PEM -f jwtRS256.key\n# Don't add passphrase\n$ openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub\n```\n\nYou may save these key files in `./local` directory as it is ignored in git.\n\nEncode keys to base64:\n\n```bash\n$ base64 -i local/jwtRS256.key\n\n$ base64 -i local/jwtRS256.key.pub\n```\n\nMust enter the base64 of the key files in `.env`:\n\n```bash\nAPI_JWT_PUBLIC_KEY_BASE64=BASE64_OF_JWT_PUBLIC_KEY\nAPI_JWT_PRIVATE_KEY_BASE64=BASE64_OF_JWT_PRIVATE_KEY\n```\n\n## Usage\n\n```bash\n$ docker compose up\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffazers%2Fportfolio-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffazers%2Fportfolio-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffazers%2Fportfolio-server/lists"}