{"id":16500781,"url":"https://github.com/siruku6/life_recorder","last_synced_at":"2026-04-13T15:34:37.848Z","repository":{"id":48959881,"uuid":"334676636","full_name":"siruku6/life_recorder","owner":"siruku6","description":"display activity log","archived":false,"fork":false,"pushed_at":"2023-04-30T12:48:15.000Z","size":276,"stargazers_count":1,"open_issues_count":10,"forks_count":2,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-07-26T10:01:29.858Z","etag":null,"topics":["circle-ci","django","docker","postgresql","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","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/siruku6.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}},"created_at":"2021-01-31T14:36:45.000Z","updated_at":"2023-04-30T07:18:11.000Z","dependencies_parsed_at":"2024-12-17T22:20:47.021Z","dependency_job_id":"99e74543-ab70-4134-9f58-f1f0aafadf2c","html_url":"https://github.com/siruku6/life_recorder","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/siruku6/life_recorder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siruku6%2Flife_recorder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siruku6%2Flife_recorder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siruku6%2Flife_recorder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siruku6%2Flife_recorder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/siruku6","download_url":"https://codeload.github.com/siruku6/life_recorder/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siruku6%2Flife_recorder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31759529,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T15:25:13.801Z","status":"ssl_error","status_checked_at":"2026-04-13T15:25:09.162Z","response_time":93,"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":["circle-ci","django","docker","postgresql","python3"],"created_at":"2024-10-11T14:59:36.291Z","updated_at":"2026-04-13T15:34:37.826Z","avatar_url":"https://github.com/siruku6.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CircleCI Status](https://circleci.com/gh/siruku6/life_recorder.svg?style=svg)](https://app.circleci.com/pipelines/github/siruku6/life_recorder?branch=master)\n[![Maintainability](https://api.codeclimate.com/v1/badges/a8818b78f606cad7164c/maintainability)](https://codeclimate.com/github/siruku6/life_recorder/maintainability)\n\n# life_recorder\nDisplay activity log  \nIn the future, these logs are showed in the form of chart (perhaps...)\n\n# 1. Requirement\n\nYou need to setup these and to enable `docker-compose` to run.\n\n- docker\n- docker-compose\n\n## Other Middlewares\n\n- pipenv\n- postgresql\n\n**\\*You don't have to setup these Middlewares in your OS, if you build your environment with docker and docker-compose !!**\n\n# 2. Development\n\n## How to build development environment?\n\n### With Docker\n\n\u003cdetails\u003e\u003csummary\u003eClick here to open! :D\u003c/summary\u003e\u003cdiv\u003e\n\n1. Create OAuth 2.0 client  \n    If it is necessary, please create Google client-id following this article.\n    ([Google Cloud / Creating client IDs](https://cloud.google.com/endpoints/docs/frameworks/java/creating-client-ids?hl=ja#web-client))\n\n\n1. Copy `.env`\n    ```bash\n    $ cp .env.example .env\n    ```\n    |No|Name       |Value Example|Note                                   |\n    |:-|:----------|:------------|:--------------------------------------|\n    |1 |DEBUG      |True         |True =\u003e Display error detail on browser|\n    |2 |SECRET_KEY |xxxxxx...    |It is for Django                       |\n    |3 |DB_USER    |user         |It is username of your postgresql      |\n    |4 |DB_PASSWORD|password     |It is password of your postgresql      |\n    |- |-          |-            |The below variables are optional\u003cbr\u003e(not required)|\n    |5 |SOCIAL_AUTH_GOOGLE_OAUTH2_KEY   |000000000000-....apps.googleusercontent.com|OAuth 2.0 client ID for Google|\n    |6 |SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET|xxxxxx...|OAuth 2.0 client secret for Google|\n\n1. Execute following commands\n    ```bash\n    $ docker-compose build\n    $ docker-compose up -d\n    $ docker attach life_recorder_web_1\n    $ docker-compose exec web python manage.py createsuperuser\n    \u003e\u003e ** Input information of your superuser! **\n    ```\n\n1. You can run automated test by this command\n    ```bash\n    $ docker-compose exec web python manage.py test --debug-mode\n\n    # I recommend following options!\n    $ docker-compose exec web python manage.py test --debug-mode -v 2 --pdb --keepdb\n    ```\n\u003c/div\u003e\u003c/details\u003e\n\n## After building environment\n\n### Access to APP\n\n1. You can access to\n    - Django Admin  \n    `localhost:8000/admin`\n    - App Top  \n    `localhost:8000/cms`\n    - API Root  \n    `localhost:8000/api/v1`\n\n1. You can display the sample response of API  \n    `localhost:8000/api/v1/records/?format=json`\n\n### Adding pip module\n\nIf you add any pip module,  \nthen you have to rewrite `requirements.txt` and rerun `docker-compose build`,  \nbecause pip modules are installed in Docker image according to `requirements.txt`.\n\n# 3. Contribution\n\nBefore `commit` or `push`, please run following checks, and confirm all of them are successful!\n\n1. flake8  \n    ```bash\n    $ docker-compose exec web flake8\n    ```\n\n1. unittest  \n    ```bash\n    $ docker-compose exec web python manage.py test --debug-mode\n    ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiruku6%2Flife_recorder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiruku6%2Flife_recorder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiruku6%2Flife_recorder/lists"}