{"id":25597410,"url":"https://github.com/VERT-sh/VERT","last_synced_at":"2026-04-18T13:30:24.140Z","repository":{"id":262278751,"uuid":"886745826","full_name":"VERT-sh/VERT","owner":"VERT-sh","description":"The next-generation file converter. Open source, fully local* and free forever.","archived":false,"fork":false,"pushed_at":"2025-02-13T22:24:39.000Z","size":6578,"stargazers_count":202,"open_issues_count":4,"forks_count":11,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T22:26:04.644Z","etag":null,"topics":["conversion","ffmpeg","svelte","sveltekit","vips","wasm"],"latest_commit_sha":null,"homepage":"https://vert.sh","language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/VERT-sh.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":"2024-11-11T14:27:14.000Z","updated_at":"2025-02-13T22:21:19.000Z","dependencies_parsed_at":"2025-02-06T20:37:21.347Z","dependency_job_id":null,"html_url":"https://github.com/VERT-sh/VERT","commit_stats":null,"previous_names":["not-nullptr/unnamed-file-converter","not-nullptr/vert","vert-sh/vert"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VERT-sh%2FVERT","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VERT-sh%2FVERT/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VERT-sh%2FVERT/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VERT-sh%2FVERT/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/VERT-sh","download_url":"https://codeload.github.com/VERT-sh/VERT/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240018686,"owners_count":19734872,"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":["conversion","ffmpeg","svelte","sveltekit","vips","wasm"],"created_at":"2025-02-21T13:00:43.863Z","updated_at":"2026-04-18T13:30:24.055Z","avatar_url":"https://github.com/VERT-sh.png","language":"Svelte","readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/user-attachments/assets/bf441748-0ec5-4c8a-b3e5-11301ee3f0bd\" alt=\"VERT's logo\" height=\"100\"\u003e\n\u003c/p\u003e\n\u003ch1 align=\"center\"\u003e\u003ca href=\"https://vert.sh\"\u003eVERT.sh\u003c/a\u003e\u003c/h1\u003e\n\nVERT is a file conversion utility that uses WebAssembly to convert files on your device instead of a cloud. Check out the live instance at [vert.sh](https://vert.sh).\n\nVERT is built in Svelte and TypeScript.\n\n## Features\n\n- Convert files directly on your device using WebAssembly *\n- No file size limits\n- Supports multiple file formats\n- User-friendly interface built with Svelte\n\n\u003csup\u003e* Non-local video conversion is planned, but the daemon will be easily self-hostable to maintain privacy and fully local functionality.\u003c/sup\u003e\n\n## Getting Started\n\n### Prerequisites\n\nMake sure you have the following installed:\n\n- [Bun](https://bun.sh/)\n\n### Installation\n```sh\n# Clone the repository\ngit clone https://github.com/yourusername/vert.git\ncd vert\n# Install dependencies\nbun i\n```\n\n### Running Locally\n\nTo run the project locally, run `bun dev`.\n\nThis will start a development server. Open your browser and navigate to `http://localhost:5173` to see the application.\n\n### Building for Production\n\nBefore building for production, make sure you create a `.env` file in the root of the project with the following content:\n\n```sh\nPUB_HOSTNAME=example.com # change to your domain, only gets used for Plausible (for now)\nPUB_PLAUSIBLE_URL=https://plausible.example.com # can be empty if not using Plausible\nPUB_ENV=production # \"production\", \"development\" or \"nightly\"\n```\n\nTo build the project for production, run `bun run build`\n\nThis will build the site to the `build` folder. You should then use a web server like [nginx](https://nginx.org) to serve the files inside that folder.\n\nIf using nginx, you can use the [nginx.conf](./nginx.conf) file as a starting point. Make sure you keep [cross-origin isolation](https://web.dev/articles/cross-origin-isolation-guide) enabled.\n\n### With Docker\n\nClone the repository, then build a Docker image with:\n```shell\n$ docker build -t VERT-sh/vert \\\n\t--build-arg PUB_ENV=production \\\n\t--build-arg PUB_HOSTNAME=vert.sh \\\n\t--build-arg PUB_PLAUSIBLE_URL=https://plausible.example.com .\n```\n\nYou can then run it by using:\n```shell\n$ docker run --restart unless-stopped -p 3000:3000 -d --name \"vert\" VERT-sh/vert\n```\n\nWe also have a `docker-compose.yml` file available. Use `docker compose up` if you want to start the stack, or `docker compose down` to bring it down. You can pass `--build` to `docker compose up` to rebuild the Docker image (useful if you've changed any of the environment variables) as well as `-d` to start it in dettached mode. You can read more about Docker Compose in general [here](https://docs.docker.com/compose/intro/compose-application-model/).\n\n## License\n\nThis project is licensed under the AGPL-3.0 License, please see the [LICENSE](LICENSE) file for details.\n","funding_links":[],"categories":["Svelte","后端开发框架及项目","Sites"],"sub_categories":["后端项目_其他"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FVERT-sh%2FVERT","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FVERT-sh%2FVERT","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FVERT-sh%2FVERT/lists"}