{"id":37318219,"url":"https://github.com/nanawel/reciphpes","last_synced_at":"2026-01-16T03:14:02.298Z","repository":{"id":41620528,"uuid":"271993603","full_name":"nanawel/reciphpes","owner":"nanawel","description":"Simple recipes management system on Symfony and SQLite","archived":false,"fork":false,"pushed_at":"2025-06-08T17:15:28.000Z","size":2412,"stargazers_count":9,"open_issues_count":3,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-08T18:25:07.841Z","etag":null,"topics":["ingredients","recipes-app","sqlite","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/nanawel.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,"zenodo":null}},"created_at":"2020-06-13T11:13:03.000Z","updated_at":"2025-06-08T17:15:32.000Z","dependencies_parsed_at":"2024-08-15T16:54:47.684Z","dependency_job_id":"77ed96d6-265f-40f4-b813-66edec9d85ee","html_url":"https://github.com/nanawel/reciphpes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nanawel/reciphpes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nanawel%2Freciphpes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nanawel%2Freciphpes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nanawel%2Freciphpes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nanawel%2Freciphpes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nanawel","download_url":"https://codeload.github.com/nanawel/reciphpes/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nanawel%2Freciphpes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28477037,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T03:13:13.607Z","status":"ssl_error","status_checked_at":"2026-01-16T03:11:47.863Z","response_time":107,"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":["ingredients","recipes-app","sqlite","symfony"],"created_at":"2026-01-16T03:14:02.065Z","updated_at":"2026-01-16T03:14:02.289Z","avatar_url":"https://github.com/nanawel.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ccenter\u003e\n\u003cimg src=\"./assets/images/logo.svg\" style=\"width: 1.5em; height: 1.5em\"/\u003e\n\nreciphpes!\n==\n\u003c/center\u003e\n\n\u003e Author: Anaël Ollier \u003cnanawel+reciphpes@gmail.com\u003e\n\n## Screenshots\n\n- [Recipes list](docs/screenshots/recipe-grid.png)\n- [Recipe page](docs/screenshots/recipe-show.png)\n- [Recipe form](docs/screenshots/recipe-form.png)\n- [Recipe mass create form](docs/screenshots/recipe-masscreate.png)\n- [Search results](docs/screenshots/search-results.png)\n\n## Installation\n\n\u003e **Notice:** Currently the application **cannot be accessed** from a URL using\n\u003e a custom base path:\n\u003e\n\u003e :ballot_box_with_check: WILL WORK: http://reciphpes.myhost.org/  \n\u003e :x: WILL NOT WORK: http://something.myhost.org/reciphpes\n\n### Docker\n\n\u003e See prebuilt image available on Docker Hub: https://hub.docker.com/r/nanawel/reciphpes\n\n```\ndocker pull nanawel/reciphpes\n```\n\nCreate a dedicated folder (here `/opt/reciphpes`) to hold `docker-compose.yml`\nand the data directory and give the latter required permissions for `www-data`\nin the container.\n\n```shell\nmkdir -p /opt/reciphpes/data/db /opt/reciphpes/data/log\nchgrp -R 33 /opt/reciphpes/data/*\nchmod -R g+w /opt/reciphpes/data/*\n```\n\nExample of `docker-compose.yml` (here listening on port `8000`):\n```yml\nservices:\n  app:\n    image: nanawel/reciphpes\n    container_name: reciphpes\n    restart: always\n    ports:\n      - '8000:80'\n    volumes:\n      - './data/db:/var/www/webapp/var/db:rw'\n      - './data/log:/var/www/webapp/var/log:rw'\n      #environment:\n      #APP_DEFAULT_LOCALE: en                       # default is \"fr\" for historical reasons\n      #APP_SET_LOCALE_FROM_ACCEPT_LANGUAGE: false   # default is true\n      #APP_SET_CONTENT_LANGUAGE_FROM_LOCALE: false  # default is true\n```\n\nStart the container with\n```shell\ncd /opt/reciphpes\ndocker-compose up -d\n```\n\nThen init the database (first time only):\n```shell\ndocker-compose exec -u www-data app make install\n```\n\n*(Optional)* You might want to generate a new secret value:\n```shell\ndocker-compose exec app make new-secret\n```\n\nYou may now access the application at http://localhost:8000/.\n\nSee next section when upgrading.\n\n### Upgrade\n\n```\ndocker-compose pull\ngzip -c data/db/app.db \u003e data/db/app.$(date +%F_%H-%M-%S).sqlite.gz\ndocker-compose up -d\ndocker-compose exec -u www-data app bin/console doctrine:migrations:migrate -n\ndocker-compose exec app make new-secret    # (optional)\n```\n\n### Build from source\n\n```shell\ngit clone https://github.com/nanawel/reciphpes.git /opt/reciphpes-src\ncd /opt/reciphpes-src\nmake build\n```\n\n## Developer Notes\n\n### Docker setup (recommended)\n\nCopy `.env` to `.env.local` and adjust values to your environment.\nYou might particularly want to change `WEBAPP_UID` to your own UID\n(to prevent permission issues with your files and the ones created\nby Apache in the container).\n\n```shell\nmake dev-build\nmake dev-startd HTTP_PORT=8080    # Choose any free port\n```\n\nYou may now enter the container with `make shell` and issue the\ncommands provided in the section below.\n\n### Local setup\n\n\u003e **Requirements**\n\u003e - Apache 2 with PHP 8.2+\n\u003e - Composer\n\u003e - NodeJS 18+\n\u003e - yarn\n\n```shell\nmake install\n\n# Start assets builder watch task\nyarn run encore dev --watch\n```\n\n# Licence\n\nSee [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnanawel%2Freciphpes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnanawel%2Freciphpes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnanawel%2Freciphpes/lists"}