{"id":30675949,"url":"https://github.com/benjaminjonard/mendako","last_synced_at":"2025-09-10T06:36:52.132Z","repository":{"id":60490500,"uuid":"542187052","full_name":"benjaminjonard/mendako","owner":"benjaminjonard","description":"Private, light booru like image board, supports multiple boards.","archived":false,"fork":false,"pushed_at":"2025-09-06T07:15:42.000Z","size":11679,"stargazers_count":29,"open_issues_count":2,"forks_count":1,"subscribers_count":5,"default_branch":"1.3","last_synced_at":"2025-09-06T09:13:59.043Z","etag":null,"topics":["booru","imageboard","php","postgresql","self-hosted","symfony"],"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/benjaminjonard.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-09-27T16:36:39.000Z","updated_at":"2025-09-05T17:31:43.000Z","dependencies_parsed_at":"2023-12-11T00:27:16.618Z","dependency_job_id":"6e7573cc-7523-4410-88ae-b85f7ced6907","html_url":"https://github.com/benjaminjonard/mendako","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/benjaminjonard/mendako","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benjaminjonard%2Fmendako","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benjaminjonard%2Fmendako/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benjaminjonard%2Fmendako/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benjaminjonard%2Fmendako/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/benjaminjonard","download_url":"https://codeload.github.com/benjaminjonard/mendako/tar.gz/refs/heads/1.3","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benjaminjonard%2Fmendako/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274422344,"owners_count":25282124,"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","status":"online","status_checked_at":"2025-09-10T02:00:12.551Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["booru","imageboard","php","postgresql","self-hosted","symfony"],"created_at":"2025-09-01T09:08:34.530Z","updated_at":"2025-09-10T06:36:52.123Z","avatar_url":"https://github.com/benjaminjonard.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://img.shields.io/github/license/benjaminjonard/mendako\" /\u003e    \n    \u003cimg src=\"https://img.shields.io/github/v/release/benjaminjonard/mendako\" /\u003e\n    \u003cimg src=\"https://img.shields.io/badge/php-\u003e=8.2-blue\" /\u003e\n    \u003cimg src=\"https://img.shields.io/badge/postgresql-\u003e=10.0-blue\" /\u003e            \n\u003c/p\u003e \n\n# Mendako\n\nQuick project done over the course of a week.\n\nPrivate, light booru-like image board, supports multiple boards.\n\nInspired by https://github.com/danbooru/danbooru\n\n## Screenshots\n\u003cp align=\"center\"\u003e\n    \u003cimg width=\"400px\" src=\"https://user-images.githubusercontent.com/20560781/196007085-5be47dac-809c-4cff-bedd-deb4757c168e.png\"\u003e\n    \u003cimg width=\"400px\" src=\"https://user-images.githubusercontent.com/20560781/196007150-e3cd4665-e6d9-4afb-8d11-41c155493f0c.png\"\u003e\n    \u003cimg width=\"400px\" src=\"https://user-images.githubusercontent.com/20560781/196007132-3df3fdde-1d28-4906-88aa-74326d9f369f.png\"\u003e\n\u003c/p\u003e\n\n## Installation\n#### Step 1 -\u003e Create a `docker-compose.yml` file\n```\nversion: '3.4'\n\nservices:\n    mendako:\n        container_name: mendako\n        image: benjaminjonard/mendako\n        restart: unless-stopped\n        ports:\n            - 81:80\n        env_file:\n            - .env\n        depends_on:\n            - mendako_postgresql\n        volumes:\n            - \"./volumes/mendako/public/uploads:/uploads\"\n            - \"./volumes/mendako/public/thumbnails:/thumbnails\" #Not mandatory\n\n    mendako_postgresql:\n        container_name: mendako_postgresql\n        image: postgres:15\n        restart: unless-stopped\n        env_file:\n            - .env\n        environment:\n            - POSTGRES_DB=${DB_NAME}\n            - POSTGRES_USER=${DB_USER}\n            - POSTGRES_PASSWORD=${DB_PASSWORD}\n        volumes:\n            - \"./volumes/postgresql:/var/lib/postgresql/data\"\n```\n####  Step 2 -\u003e Create a `.env` file\n```\n########################################################################################################\n#                                                WEB\n#\n# APP_DEBUG=1 displays detailed error message\n#\n# APP_SECRET is a random string used for security, you can use for example openssl rand -base64 21\n# APP_SECRET is automatically generated when using Docker\n#\n# PHP_TZ, see possible values here https://www.w3schools.com/php/php_ref_timezones.asp\n# APP_THUMBNAILS_FORMAT possible values : jpeg, png, webp, avif. Leave empty if you want to keep the original image format\n# APP_POST_PER_PAGE and APP_INFINITE_SCROLL_POST_PER_PAGE are limited to 200\n########################################################################################################\n\nAPP_DEBUG=0\nAPP_ENV=prod\n#APP_SECRET=\n\nHTTPS_ENABLED=1\nUPLOAD_MAX_FILESIZE=20M\nPHP_MEMORY_LIMIT=512M\nPHP_TZ=Europe/Paris\n\nAPP_THUMBNAILS_FORMAT=\nAPP_POST_PER_PAGE=20\nAPP_INFINITE_SCROLL_POST_PER_PAGE=50\n\n########################################################################################################\n#                                                DATABASE\n########################################################################################################\n\nDB_NAME=mendako\nDB_HOST=mendako_postgresql\nDB_PORT=5432\nDB_USER=mendako\nDB_PASSWORD=mendako\nDB_VERSION=15\n\n```\n\n####  Step 3 -\u003e Review both files and update values if required\n\n####  Step 4 -\u003e Start Mendako\n`docker-compose up -d`\n\n### Available environment variables\n\n| Name                | Description                                 | Possible values                                     |\n|---------------------|---------------------------------------------|-----------------------------------------------------|\n| DB_USER             | Your database user                          |                                                     |\n| DB_PASSWORD         | Your database password                      |                                                     |\n| DB_HOST             | Your database address                       |                                                     |\n| DB_PORT             | Your database port                          |                                                     |\n| DB_NAME             | Your database name                          |                                                     |\n| DB_VERSION          | Your database server version                | ex: `10.3`                                          |\n| APP_SECRET          | Random string used for security             |                                                     |\n| APP_ENV             | Symfony environment, `prod` by default      | `prod` or `dev`                                     |\n| APP_DEBUG           | Activate Symfony debug mode, `0` by default | `0` or `1`                                          |\n| HTTPS_ENABLED       | If your instance uses https                 | `0` or `1`                                          |\n| UPLOAD_MAX_FILESIZE | Defaults to 20M                             |                                                     |\n| PHP_MEMORY_LIMIT    | Defaults to 512M                            |                                                     |\n| PHP_TIMEZONE        | You timezone, default to Europe\\Paris       | https://www.w3schools.com/php/php_ref_timezones.asp |\n\n\n## Support Mendako\n\nThere are a few things you can do to support Mendako :\n\n* If you like Mendako please consider leaving a ⭐, it gives additional motivation to continue working on the project\n* Report any bug or error you see\n* English is not my first language, it would be a huge help if you could report any mistakes in Mendako.\n\nYou can contribute and edit translations here: https://crowdin.com/project/mendako.\nIf you wish to contribute to a new language, please open a discussion on github or crowdin and I'll gladly add it.\nYou are also welcome if you want to proofread existing translations.\n\n### Translations status\n\u003c!-- CROWDIN-TRANSLATIONS-PROGRESS-ACTION-START --\u003e\n\n\n#### Available\n\n\u003ctable\u003e\u003ctr\u003e\u003ctd align=\"center\" valign=\"top\"\u003e\u003cimg width=\"30px\" height=\"30px\" title=\"English\" alt=\"English\" src=\"https://raw.githubusercontent.com/benjaminjonard/crowdin-translations-progress-action/1.0/flags/en.png\"\u003e\u003c/div\u003e\u003cdiv align=\"center\" valign=\"top\"\u003e100%\u003c/td\u003e\u003ctd align=\"center\" valign=\"top\"\u003e\u003cimg width=\"30px\" height=\"30px\" title=\"Japanese\" alt=\"Japanese\" src=\"https://raw.githubusercontent.com/benjaminjonard/crowdin-translations-progress-action/1.0/flags/ja.png\"\u003e\u003c/div\u003e\u003cdiv align=\"center\" valign=\"top\"\u003e100%\u003c/td\u003e\u003ctd align=\"center\" valign=\"top\"\u003e\u003cimg width=\"30px\" height=\"30px\" title=\"Portuguese, Brazilian\" alt=\"Portuguese, Brazilian\" src=\"https://raw.githubusercontent.com/benjaminjonard/crowdin-translations-progress-action/1.0/flags/pt-BR.png\"\u003e\u003c/div\u003e\u003cdiv align=\"center\" valign=\"top\"\u003e100%\u003c/td\u003e\u003ctd align=\"center\" valign=\"top\"\u003e\u003cimg width=\"30px\" height=\"30px\" title=\"Spanish\" alt=\"Spanish\" src=\"https://raw.githubusercontent.com/benjaminjonard/crowdin-translations-progress-action/1.0/flags/es-ES.png\"\u003e\u003c/div\u003e\u003cdiv align=\"center\" valign=\"top\"\u003e100%\u003c/td\u003e\u003ctd align=\"center\" valign=\"top\"\u003e\u003cimg width=\"30px\" height=\"30px\" title=\"French\" alt=\"French\" src=\"https://raw.githubusercontent.com/benjaminjonard/crowdin-translations-progress-action/1.0/flags/fr.png\"\u003e\u003c/div\u003e\u003cdiv align=\"center\" valign=\"top\"\u003e98%\u003c/td\u003e\u003ctd align=\"center\" valign=\"top\"\u003e\u003cimg width=\"30px\" height=\"30px\" title=\"Hungarian\" alt=\"Hungarian\" src=\"https://raw.githubusercontent.com/benjaminjonard/crowdin-translations-progress-action/1.0/flags/hu.png\"\u003e\u003c/div\u003e\u003cdiv align=\"center\" valign=\"top\"\u003e97%\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\n\u003c!-- CROWDIN-TRANSLATIONS-PROGRESS-ACTION-END --\u003e\n\n## Licensing\nMendako is an Open Source software, released under the MIT License. \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenjaminjonard%2Fmendako","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenjaminjonard%2Fmendako","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenjaminjonard%2Fmendako/lists"}