{"id":25971972,"url":"https://github.com/dgraph-io/Install-Dgraph","last_synced_at":"2025-03-05T00:02:22.311Z","repository":{"id":47452955,"uuid":"265633391","full_name":"dgraph-io/Install-Dgraph","owner":"dgraph-io","description":"Dgraph installation scripts","archived":false,"fork":false,"pushed_at":"2024-11-11T02:02:54.000Z","size":109,"stargazers_count":2,"open_issues_count":0,"forks_count":7,"subscribers_count":18,"default_branch":"master","last_synced_at":"2025-02-23T07:41:44.877Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://get.dgraph.io","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dgraph-io.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":"2020-05-20T17:05:59.000Z","updated_at":"2024-11-11T02:02:58.000Z","dependencies_parsed_at":"2024-11-11T03:17:49.105Z","dependency_job_id":"d2aea4da-1e63-4940-9493-944593cd86bc","html_url":"https://github.com/dgraph-io/Install-Dgraph","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/dgraph-io%2FInstall-Dgraph","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgraph-io%2FInstall-Dgraph/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgraph-io%2FInstall-Dgraph/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dgraph-io%2FInstall-Dgraph/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dgraph-io","download_url":"https://codeload.github.com/dgraph-io/Install-Dgraph/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241940573,"owners_count":20045881,"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":"2025-03-05T00:02:21.067Z","updated_at":"2025-03-05T00:02:22.291Z","avatar_url":"https://github.com/dgraph-io.png","language":"Shell","funding_links":[],"categories":["Dgraph's Social Media"],"sub_categories":[],"readme":"# Dgraph Install Scripts\n\nThis repository is home to the installation scripts that you find at `https://get.dgraph.io` and others.\n\nWorks for:\n\n* :white_check_mark: Ubuntu 16.04 and above \n* :x: macOS Sierra and above\n* :x: Windows 10 and above\n* :x: Windows Server 2016 above\n\n\u003c!-- Todo: Add Windows Version with Powershell version tested. --\u003e\n\u003c!-- Todo: Add Systemd references. --\u003e\n\n# Install Dgraph on Linux and macOS\n\n\u003c!-- Todo: Add Brew formula here. --\u003e\n\n\u003e macOS is no longer supported (for now), you can only install old versions.\n\n### Using Shell\n\nFrom `https://get.dgraph.io`\n\nDownload latest:\n```shell\ncurl https://get.dgraph.io -sSf | bash\n```\n\nDownload latest and install as Systemd services (just Linux):\n\n```shell\ncurl https://get.dgraph.io -sSf | bash -s -- --systemd\n```\n\nWith Environment Variables:\n\n```shell\ncurl https://get.dgraph.io -sSf | VERSION=v20.03.1-beta1 bash\n```\n\n## Flags\n\nAdd `-s --` before the flags.\n\n\u003e`-y | --accept-license`: Automatically agree to the terms of the Dgraph Community License (default: “n”).\n\n\u003e`-d | --download`: Download Dgraph's binary to the current path only. No globally installation. (default: “n”).\n\n\u003e`-s | --systemd`: Automatically create Dgraph’s installation as Systemd services (default: “n”).\n\n\u003e`-v | --version`: Choose Dgraph’s version manually (default: The latest stable release, you can do tag combinations e.g v22.0.0-RC1-20221003 or -rc2).\n\n\n## Environment Variables\n\n\u003e`ACCEPT_LICENSE`: Automatically agree to the terms of the Dgraph Community License (default: “n”).\n\n\u003e`JUST_DOWNLOAD`: Download Dgraph's binary to the current path only. No globally installation. (default: “n”).\n\n\u003e`INSTALL_IN_SYSTEMD`: Automatically create Dgraph’s installation as Systemd services (default: “n”).\n\n\u003e`VERSION`: Choose Dgraph’s version manually (default: The latest stable release).\n\n\n# Install Dgraph on Windows\n\n\u003e No longer supported (for now).\n\n### Using Powershell\n\nThis script needs to be executed with ExecutionPolicy set as RemoteSigned\"\nplease run (as Administrator):\"\n\n```\nSet-ExecutionPolicy -ExecutionPolicy \"RemoteSigned\"\n```\n\nAfter run the script you can set it to `-ExecutionPolicy \"Undefined\"`\n\nFrom `https://get.dgraph.io/windows`\n\nDownload latest:\n\n```shell\niwr https://get.dgraph.io/windows -useb | iex\n```\n\nWith Environment Variables:\n\n```shell\n$Version=\"v22.00.1\"; $acceptLicense=\"yes\"; iwr http://get.dgraph.io/windows -useb | iex\n```\n\nDownload the script and run locally\n\n```shell\niwr http://get.dgraph.io/windows -useb -outf install.ps1; .\\install.ps1\n```\n\nRun locally with flags\n\n```shell\niwr http://get.dgraph.io/windows -useb -outf install.ps1; .\\install.ps1 -version v22.00.1 -acceptLicense yes\n```\n\n## Flags\n\n\u003e`-acceptLicense`: Automatically agree to the terms of the Dgraph Community License (default: ask).\n\n\u003e`-version`: Choose Dgraph’s version manually (default: The latest stable release, you can do tag combinations e.g v20.03.1-beta1 or -rc1).\n\n## Environment Variables\n\n\u003e`$Version=\"v20.03.1\"`: Choose Dgraph’s version manually (default: The latest stable release).\n\n\u003e`$acceptLicense=\"yes\"`: Choose Dgraph’s version manually (default: The latest stable release, you can do tag combinations e.g v22.0.0-RC1-20221003 or -rc2).\n\n## Compatibility\n\nThis Scrip works on Windows 10, some Windows containers and Windows Server 2016 only.\n\n\u003c!-- Todo: Check Compatibility with Windows Subsystem for Linux. --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdgraph-io%2FInstall-Dgraph","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdgraph-io%2FInstall-Dgraph","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdgraph-io%2FInstall-Dgraph/lists"}