{"id":46569048,"url":"https://github.com/bruecksen/bakeup","last_synced_at":"2026-03-07T08:02:48.701Z","repository":{"id":41179315,"uuid":"462694669","full_name":"bruecksen/bakeup","owner":"bruecksen","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-04T16:47:57.000Z","size":20346,"stargazers_count":16,"open_issues_count":76,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-12-08T00:52:33.768Z","etag":null,"topics":["baking","django","microbakeries","python"],"latest_commit_sha":null,"homepage":"http://bakeup.org","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bruecksen.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-02-23T10:53:41.000Z","updated_at":"2025-12-04T16:46:16.000Z","dependencies_parsed_at":"2023-10-20T13:42:36.199Z","dependency_job_id":"0c9f6f6c-c590-441e-a5a9-c4f5f4b41c2d","html_url":"https://github.com/bruecksen/bakeup","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/bruecksen/bakeup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bruecksen%2Fbakeup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bruecksen%2Fbakeup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bruecksen%2Fbakeup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bruecksen%2Fbakeup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bruecksen","download_url":"https://codeload.github.com/bruecksen/bakeup/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bruecksen%2Fbakeup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30209796,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T05:23:27.321Z","status":"ssl_error","status_checked_at":"2026-03-07T05:00:17.256Z","response_time":53,"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":["baking","django","microbakeries","python"],"created_at":"2026-03-07T08:02:47.876Z","updated_at":"2026-03-07T08:02:48.632Z","avatar_url":"https://github.com/bruecksen.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bakeup\n\nBest baking app ever!\n\n[![Built with Cookiecutter Django](https://img.shields.io/badge/built%20with-Cookiecutter%20Django-ff69b4.svg?logo=cookiecutter)](https://github.com/cookiecutter/cookiecutter-django/)\n[![Black code style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)\n\nLicense: [Business Source License 1.1](LICENSE)\n\n## Settings\n\nMoved to [settings](http://cookiecutter-django.readthedocs.io/en/latest/settings.html).\n\n## Basic Commands\n\n### Setting up tenants\n\n    $ python manage.py migrate_schemas --shared\n\nCreate the first primary tenant, schema_name, name and domain should be **localhost**\n\n    $ python manage.py create_tenant\n\nEdit your hosts file (/etc/hosts) and add one for the primary tenanat and for all the other tenants as well\n\n    127.0.0.1       localhost\n    127.0.0.1       ole.localhost\n\nIn production add subdomain to nginx config and update letsencrypt certificate:\n\n    certbot --expand -d bakeup.org,matthias.bakeup.org,niels.bakeup.org,ole.bakeup.org,hasenbrot.bakeup.org\n\n\n### Load fixtures\n\nIt is important to set the proper --schema parameter to load the data into the right tenant. For local development this should be --schema=localhost\n\n    python manage.py tenant_command loaddata --schema=localhost bakeup/shop/fixtures/demo_point_of_sale.json\n    python manage.py tenant_command loaddata --schema=localhost bakeup/users/fixtures/demo_users.json\n    python manage.py tenant_command loaddata --schema=localhost bakeup/users/fixtures/groups.json\n    python manage.py tenant_command loaddata --schema=localhost bakeup/workshop/fixtures/demo_categories.json\n    python manage.py tenant_command loaddata --schema=localhost bakeup/workshop/fixtures/demo_products.json\n\nThis will also create some demo users accounts to login. You can user username: admin, password: admin.\n\n### Create initial CMS Pages\n\nThis will create some default wagtail pages with demo content\n\n    python manage.py create_initial_wagtail_pages\n\n\n### Translation\n\n    python manage.py makemessages -l de_DE -l de_DE@formal\n    python manage.py compilemessages\n\n\n### Type checks\n\nRunning type checks with mypy:\n\n    $ mypy bakeup\n\n### Test coverage\n\nTo run the tests, check your test coverage, and generate an HTML coverage report:\n\n    $ coverage run -m pytest\n    $ coverage html\n    $ open htmlcov/index.html\n\n#### Running tests with pytest\n\n    $ pytest\n\n### Live reloading and Sass CSS compilation\n\nMoved to [Live reloading and SASS compilation](http://cookiecutter-django.readthedocs.io/en/latest/live-reloading-and-sass-compilation.html).\n\n### Sentry\n\nSentry is an error logging aggregator service. You can sign up for a free account at \u003chttps://sentry.io/signup/?code=cookiecutter\u003e or download and host it yourself.\nThe system is set up with reasonable defaults, including 404 logging and integration with the WSGI application.\n\nYou must set the DSN url in production.\n\n## Deployment\n\nMake sure pip is up-to-date (pip install --upgrade pip) and requirements are installed (pip install -r requirements/local.txt)\n\nAdjust fabfile.py to your needs, ex. change staging envs to fit your servername and directory or/and configure a totally different environment. We go with staging in this example\n\nRun fab with env and deploy\n\n    $ fab staging deploy\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbruecksen%2Fbakeup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbruecksen%2Fbakeup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbruecksen%2Fbakeup/lists"}