{"id":40411659,"url":"https://github.com/tomblancdev/my-website","last_synced_at":"2026-01-20T14:09:26.200Z","repository":{"id":282695255,"uuid":"945003707","full_name":"tomblancdev/my-website","owner":"tomblancdev","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-16T10:39:17.000Z","size":194,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-16T11:29:44.064Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tomblancdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2025-03-08T12:37:13.000Z","updated_at":"2025-03-16T10:39:19.000Z","dependencies_parsed_at":"2025-03-16T11:29:49.576Z","dependency_job_id":"8e21e2d1-f61a-471c-81de-300679e18ddf","html_url":"https://github.com/tomblancdev/my-website","commit_stats":null,"previous_names":["tomblancdev/my-website"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tomblancdev/my-website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomblancdev%2Fmy-website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomblancdev%2Fmy-website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomblancdev%2Fmy-website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomblancdev%2Fmy-website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tomblancdev","download_url":"https://codeload.github.com/tomblancdev/my-website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomblancdev%2Fmy-website/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28604712,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T12:01:53.233Z","status":"ssl_error","status_checked_at":"2026-01-20T12:01:46.545Z","response_time":117,"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":[],"created_at":"2026-01-20T14:09:25.509Z","updated_at":"2026-01-20T14:09:26.195Z","avatar_url":"https://github.com/tomblancdev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# My Website\n\nThe Tom Blanc's website\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[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n\n## Settings\n\nMoved to [settings](https://cookiecutter-django.readthedocs.io/en/latest/1-getting-started/settings.html).\n\n## Basic Commands\n\n### Setting Up Your Users\n\n- To create a **normal user account**, just go to Sign Up and fill out the form. Once you submit it, you'll see a \"Verify Your E-mail Address\" page. Go to your console to see a simulated email verification message. Copy the link into your browser. Now the user's email should be verified and ready to go.\n\n- To create a **superuser account**, use this command:\n\n      $ python manage.py createsuperuser\n\nFor convenience, you can keep your normal user logged in on Chrome and your superuser logged in on Firefox (or similar), so that you can see how the site behaves for both kinds of users.\n\n### Type checks\n\nRunning type checks with mypy:\n\n    $ mypy my_website\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](https://cookiecutter-django.readthedocs.io/en/latest/2-local-development/developing-locally.html#using-webpack-or-gulp).\n\n### Celery\n\nThis app comes with Celery.\n\nTo run a celery worker:\n\n```bash\ncd my_website\ncelery -A config.celery_app worker -l info\n```\n\nPlease note: For Celery's import magic to work, it is important _where_ the celery commands are run. If you are in the same folder with _manage.py_, you should be right.\n\nTo run [periodic tasks](https://docs.celeryq.dev/en/stable/userguide/periodic-tasks.html), you'll need to start the celery beat scheduler service. You can start it as a standalone process:\n\n```bash\ncd my_website\ncelery -A config.celery_app beat\n```\n\nor you can embed the beat service inside a worker with the `-B` option (not recommended for production use):\n\n```bash\ncd my_website\ncelery -A config.celery_app worker -B -l info\n```\n\n### Email Server\n\nIn development, it is often nice to be able to see emails that are being sent from your application. For that reason local SMTP server [Mailpit](https://github.com/axllent/mailpit) with a web interface is available as docker container.\n\nContainer mailpit will start automatically when you will run all docker containers.\nPlease check [cookiecutter-django Docker documentation](https://cookiecutter-django.readthedocs.io/en/latest/2-local-development/developing-locally-docker.html) for more details how to start all containers.\n\nWith Mailpit running, to view messages that are sent by your application, open your browser and go to `http://127.0.0.1:8025`\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\nThe following details how to deploy this application.\n\n### Docker\n\nSee detailed [cookiecutter-django Docker documentation](https://cookiecutter-django.readthedocs.io/en/latest/3-deployment/deployment-with-docker.html).\n\n### Custom Bootstrap Compilation\n\nThe generated CSS is set up with automatic Bootstrap recompilation with variables of your choice.\nBootstrap v5 is installed using npm and customised by tweaking your variables in `static/sass/custom_bootstrap_vars`.\n\nYou can find a list of available variables [in the bootstrap source](https://github.com/twbs/bootstrap/blob/v5.1.3/scss/_variables.scss), or get explanations on them in the [Bootstrap docs](https://getbootstrap.com/docs/5.1/customize/sass/).\n\nBootstrap's javascript as well as its dependencies are concatenated into a single file: `static/js/vendors.js`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomblancdev%2Fmy-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftomblancdev%2Fmy-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomblancdev%2Fmy-website/lists"}