{"id":28378957,"url":"https://github.com/aboutcode-org/scancode.io-appimage","last_synced_at":"2026-01-28T14:33:02.361Z","repository":{"id":65618911,"uuid":"590616034","full_name":"aboutcode-org/scancode.io-appimage","owner":"aboutcode-org","description":null,"archived":false,"fork":false,"pushed_at":"2024-08-30T06:15:14.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-10-21T22:33:16.115Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/aboutcode-org.png","metadata":{"files":{"readme":"README.rst","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}},"created_at":"2023-01-18T20:16:52.000Z","updated_at":"2024-08-30T06:15:17.000Z","dependencies_parsed_at":"2023-02-17T00:55:18.510Z","dependency_job_id":null,"html_url":"https://github.com/aboutcode-org/scancode.io-appimage","commit_stats":null,"previous_names":["aboutcode-org/scancode.io-appimage"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/aboutcode-org/scancode.io-appimage","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutcode-org%2Fscancode.io-appimage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutcode-org%2Fscancode.io-appimage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutcode-org%2Fscancode.io-appimage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutcode-org%2Fscancode.io-appimage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aboutcode-org","download_url":"https://codeload.github.com/aboutcode-org/scancode.io-appimage/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutcode-org%2Fscancode.io-appimage/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28846058,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T13:02:32.985Z","status":"ssl_error","status_checked_at":"2026-01-28T13:02:04.945Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":"2025-05-30T02:07:39.239Z","updated_at":"2026-01-28T14:33:02.355Z","avatar_url":"https://github.com/aboutcode-org.png","language":null,"readme":"ScanCode.io AppImage\n--------------------\n\nThis repo provides `scancode.io \u003chttps://github.com/aboutcode-org/scancode.io\u003e`_ as an\nAppImage. Specifically, AppImage is built using the build files found at\nhttps://github.com/aboutcode-org/scancode.io/tree/scancode.io-appimage/etc/scripts/appimage-build,\nwhich uses `pkg2appimage \u003chttps://github.com/AppImageCommunity/pkg2appimage\u003e`_\nto package scancode.io, Python built from `python-appimage\n\u003chttps://github.com/niess/python-appimage\u003e`_, and other ScanCode Toolkit\nsystem dependencies into an AppImage.\n\nUsage\n-----\n\nNote: scancode.io will be run using the Django development server. The entry\npoint of the scancode.io AppImage points to ``manage.py`` of scancode.io.\n\nEnsure that the AppImage is executable:\n\n  - ``chmod +x scancodeio-*glibc2.27-x86_64.AppImage``\n\nOn first run, the file ``.env-scancodeio`` will be created in your home\ndirectory with environment variables necessary to run scancode.io from an\nAppImage:\n\n  - ``SECRET_KEY``\n\n    - Used for generating cryptographic hashes. This key is randomly\n      generated and must be kept secret.\n\n  - ``SCANCODEIO_DB_ENGINE``\n\n    - This determines the database backend used by scancode.io.\n    - By default, this is set to ``django.db.backends.sqlite3``, as the\n      scancode.io AppImage only supports using a sqlite database.\n\n  - ``SCANCODEIO_DB_NAME``\n\n    - This contains the absolute path to the sqlite file that will be used\n      to store scancode.io's database.\n    - By default, a file named ``scancodeio.db`` will be created in the\n      user's home directory.\n\n  - ``SCANCODEIO_WORKSPACE_LOCATION``\n\n    - This contains the absolute path to a directory where scancode.io can\n      store project files.\n    - By default, a directory named ``scancodeio-workspace`` will be created\n      the user's home directory.\n\nOther environment variables can be set in the ``.env-scancodeio`` file. You can\nsee what environment variables can be set from the variables in\nhttps://github.com/aboutcode-org/scancode.io/blob/scancode.io-appimage/scancodeio/settings.py\n\nFor example, if you wanted to adjust the time taken to scan a file in\nscancode.io, you can set the duration using the ``SCANCODEIO_SCAN_FILE_TIMEOUT``\nenvironment variable.\n\nIn the case of where you will be deploying scancode.io to a server, you must add\nthat server's hostname to the ``ALLOWED_HOSTS`` environment variable before you\nare able to access it externally.\n\nBefore running the server, you will need to create the sqlite file used for\nscancode.io's database and run database migrations:\n\n  - ``./scancodeio-*glibc2.27-x86_64.AppImage migrate``\n\nTo run the server:\n\n  - ``./scancodeio-*glibc2.27-x86_64.AppImage runserver --insecure``\n\nscancode.io will now be available at http://127.0.0.1:8000\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faboutcode-org%2Fscancode.io-appimage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faboutcode-org%2Fscancode.io-appimage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faboutcode-org%2Fscancode.io-appimage/lists"}