{"id":22147704,"url":"https://github.com/testinggospels/camouflage-filemanager","last_synced_at":"2025-07-26T02:31:53.099Z","repository":{"id":46218081,"uuid":"412703429","full_name":"testinggospels/camouflage-filemanager","owner":"testinggospels","description":"Camouflage Filemanager is a web based filemanager that allows you to browse files/folders, edit text based files, upload and download files.","archived":false,"fork":false,"pushed_at":"2021-11-06T04:02:56.000Z","size":112,"stargazers_count":18,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-29T06:11:04.767Z","etag":null,"topics":["camouflage","explorer-filemanager","filemanager","filemanager-ui","hacktoberfest","sveltekit"],"latest_commit_sha":null,"homepage":"https://camouflage-filemanager.herokuapp.com/","language":"Svelte","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/testinggospels.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-10-02T05:49:33.000Z","updated_at":"2024-10-25T07:28:01.000Z","dependencies_parsed_at":"2022-08-31T02:41:52.700Z","dependency_job_id":null,"html_url":"https://github.com/testinggospels/camouflage-filemanager","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testinggospels%2Fcamouflage-filemanager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testinggospels%2Fcamouflage-filemanager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testinggospels%2Fcamouflage-filemanager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testinggospels%2Fcamouflage-filemanager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/testinggospels","download_url":"https://codeload.github.com/testinggospels/camouflage-filemanager/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":227642580,"owners_count":17797903,"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":["camouflage","explorer-filemanager","filemanager","filemanager-ui","hacktoberfest","sveltekit"],"created_at":"2024-12-01T23:20:10.000Z","updated_at":"2024-12-01T23:20:10.635Z","avatar_url":"https://github.com/testinggospels.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Camouflage Filemanager\n\nCamouflage Filemanager is a web based filemanager that allows you to browse and create files/folders, edit text based files, download files.\n\n## Preview\n![CamouflageUI-1](https://raw.githubusercontent.com/testinggospels/camouflage/develop/docs/CamouflageUI-1.png)\n![CamouflageUI-2](https://raw.githubusercontent.com/testinggospels/camouflage/develop/docs/CamouflageUI-2.png)\n![CamouflageUI-3](https://raw.githubusercontent.com/testinggospels/camouflage/develop/docs/CamouflageUI-3.png)\n![CamouflageUI-4](https://raw.githubusercontent.com/testinggospels/camouflage/develop/docs/CamouflageUI-4.png)\n![CamouflageUI-5](https://raw.githubusercontent.com/testinggospels/camouflage/develop/docs/CamouflageUI-5.png)\n![CamouflageUI-6](https://raw.githubusercontent.com/testinggospels/camouflage/develop/docs/CamouflageUI-6.png)\n\n## Installation\n\n### NPM\n\n```bash\nnpm install -g camouflage-filemanager\n```\nFilemanager requires two environment variables\n* `FS_ROOT`: Root Directory for filemanager; default value is current working directory\n* `WRITE_PROTECTED`: Default value is `true`, which means creation/deletion/updates of any kind are not allowed.\n\nStart filemanager after npm installation by running command: `filemanager` in your desired directory. Optionally you can override aforementioned environment variables by exporting or by creating a `.env` file in your current working directory.\n\n### Docker\n\n1. Default:\n   ```bash\n   docker run -d -p 3000:3000 --name filemanager shubhendumadhukar/camouflage-filemanager\n   ```\n2. Specify root directory:\n   ```bash\n   docker run -d -p 3000:3000 -e FS_ROOT=\"/opt\" --name filemanager shubhendumadhukar/camouflage-filemanager\n   ```\n3. Specify if write is allowed (not allowed by default):\n   ```bash\n   docker run -d -p 3000:3000 -e FS_ROOT=\"/opt\" -e WRITE_PROTECTED=false --name filemanager shubhendumadhukar/camouflage-filemanager\n   ```\n4. Mount a local volume:\n   ```bash\n   docker run -d -p 3000:3000 -e FS_ROOT=\"/opt/virtual_services\" -e WRITE_PROTECTED=false -v ~/Desktop:/opt/Desktop --name filemanager shubhendumadhukar/camouflage-filemanager\n   ```\n\n## License\n```\nMIT License\n\nCopyright (c) 2021 testinggospels\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftestinggospels%2Fcamouflage-filemanager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftestinggospels%2Fcamouflage-filemanager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftestinggospels%2Fcamouflage-filemanager/lists"}