{"id":18769861,"url":"https://github.com/zgr3doo/specificfilestaticfinder","last_synced_at":"2025-07-15T19:06:42.732Z","repository":{"id":83492433,"uuid":"55157730","full_name":"zgr3doo/SpecificFileStaticFinder","owner":"zgr3doo","description":"Custom static file finder for Django","archived":false,"fork":false,"pushed_at":"2016-03-31T16:37:01.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-20T23:38:03.307Z","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/zgr3doo.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":"2016-03-31T14:38:29.000Z","updated_at":"2016-03-31T16:37:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"504ea82b-19ae-4c3f-af5e-8107418749b6","html_url":"https://github.com/zgr3doo/SpecificFileStaticFinder","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zgr3doo/SpecificFileStaticFinder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zgr3doo%2FSpecificFileStaticFinder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zgr3doo%2FSpecificFileStaticFinder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zgr3doo%2FSpecificFileStaticFinder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zgr3doo%2FSpecificFileStaticFinder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zgr3doo","download_url":"https://codeload.github.com/zgr3doo/SpecificFileStaticFinder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zgr3doo%2FSpecificFileStaticFinder/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261250231,"owners_count":23130538,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2024-11-07T19:17:08.573Z","updated_at":"2025-06-22T07:04:02.224Z","avatar_url":"https://github.com/zgr3doo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SpecificFileStaticFinder\nCustom static file finder for Django\n\nThis is static file finder for Django which will allow you to specify certain files instead of whole directories like FileSystemFinder do.\n\nTo install it just copy this folder into your project as an app and include it in your INSTALLED_APPS\n\ninclude it in STATICFILES_FINDERS\n\n\n    STATICFILES_FINDERS = [\n        ...\n        'SpecificFileStaticFinder.finder.SpecificFileStaticFinder',\n        ...\n    ]\n\n\n\nand add this extra STATICFILES list into your settings.py which will include all files which should be included using collectstatic\n\n\n    STATICFILES = [\n        # Bootstrap\n        ('css', os.path.abspath(os.path.join(BASE_DIR, 'bower_components/bootstrap/dist/css/bootstrap.min.css'))),\n        ('css', os.path.abspath(os.path.join(BASE_DIR, 'bower_components/bootstrap/dist/css/bootstrap-theme.min.css'))),\n        ('js', os.path.abspath(os.path.join(BASE_DIR, 'bower_components/bootstrap/dist/js/bootstrap.min.js'))),\n\n        # Font Awesome\n        ('css', os.path.abspath(os.path.join(BASE_DIR, 'bower_components/font-awesome/css/font-awesome.min.css'))),\n        ('fonts', os.path.abspath(os.path.join(BASE_DIR, 'bower_components/font-awesome/fonts/fontawesome-webfont.eot'))),\n        ('fonts', os.path.abspath(os.path.join(BASE_DIR, 'bower_components/font-awesome/fonts/fontawesome-webfont.svg'))),\n        ('fonts', os.path.abspath(os.path.join(BASE_DIR, 'bower_components/font-awesome/fonts/fontawesome-webfont.ttf'))),\n        ('fonts', os.path.abspath(os.path.join(BASE_DIR, 'bower_components/font-awesome/fonts/fontawesome-webfont.woff'))),\n        ('fonts', os.path.abspath(os.path.join(BASE_DIR, 'bower_components/font-awesome/fonts/fontawesome-webfont.woff2'))),\n        ('fonts', os.path.abspath(os.path.join(BASE_DIR, 'bower_components/font-awesome/fonts/FontAwesome.otf'))),\n\n        # JQuery\n        ('js', os.path.abspath(os.path.join(BASE_DIR, 'bower_components/jquery/dist/jquery.min.js'))),\n    ]\n\n\nRemember to use this pattern\n\n    STATICFILES = [\n        ...\n        ('folder', 'path/to/the/required.file'),\n        ...\n    ]\n\n\nin order to achieve following file structure\n\n\n    /django_app/app/local/folder/required.file\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzgr3doo%2Fspecificfilestaticfinder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzgr3doo%2Fspecificfilestaticfinder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzgr3doo%2Fspecificfilestaticfinder/lists"}