{"id":45918783,"url":"https://github.com/unitystation/central-command","last_synced_at":"2026-02-28T08:07:10.059Z","repository":{"id":43213958,"uuid":"307910999","full_name":"unitystation/central-command","owner":"unitystation","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-22T21:35:05.000Z","size":379,"stargazers_count":1,"open_issues_count":5,"forks_count":4,"subscribers_count":2,"default_branch":"develop","last_synced_at":"2025-11-22T23:20:58.306Z","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/unitystation.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-10-28T04:57:44.000Z","updated_at":"2025-11-22T21:32:15.000Z","dependencies_parsed_at":"2022-09-14T08:01:12.778Z","dependency_job_id":"0d04d8dd-0014-4c37-b5c4-8a7c870bdc3e","html_url":"https://github.com/unitystation/central-command","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/unitystation/central-command","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unitystation%2Fcentral-command","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unitystation%2Fcentral-command/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unitystation%2Fcentral-command/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unitystation%2Fcentral-command/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unitystation","download_url":"https://codeload.github.com/unitystation/central-command/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unitystation%2Fcentral-command/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29928019,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T19:37:42.220Z","status":"online","status_checked_at":"2026-02-28T02:00:07.010Z","response_time":90,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2026-02-28T08:07:08.562Z","updated_at":"2026-02-28T08:07:10.049Z","avatar_url":"https://github.com/unitystation.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Central Command\n\n![Docker Image Version (latest by date)](https://img.shields.io/docker/v/unitystation/central-command?sort=date)\n[![Codacy Badge](https://app.codacy.com/project/badge/Grade/38cce37d4c854ca48645fd5ecc9cae61)](https://www.codacy.com/gh/unitystation/central-command/dashboard?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=unitystation/central-command\u0026amp;utm_campaign=Badge_Grade)\n\nThe all-in-one backend application for [Unitystation](https://github.com/unitystation/unitystation)\n\n## Features\n\n- Account management and user validation.\n- Server list management.\n- In-game persistence.\n- Works cross-fork!\n- Modular architecture.\n\n## Development guide\n\n### Environment setup\n\nCopy `example.env` to `.env` and customize it. You can then start development by either using docker or running the project locally.\n\n### Setting up python to run the project locally\n\nYou will need python 3.12+\n\n\u003cdetails\u003e\n\u003csummary\u003eExtra steps if don't want to install uv globally for some reason\u003c/summary\u003e\n\n#### Install venv (only first time or after updating sytem python version)\n\n```sh\npython -m venv .venv\n```\n\n#### Activate venv on Linux\n\n```sh\n. .venv/bin/activate\n```\n\n#### Activate venv on Windows\n\n```bat\n.venv\\Scripts\\activate\n```\n\n\u003c/details\u003e\n\n#### Dependency installation\n\nInstall uv to manage dependencies\n\n```sh\npip install -U pip uv\n```\n\nInstall dev dependencies\n\n```sh\nuv sync\n```\n\n#### Start the server\n\nfrom the src folder run\n\n```sh\npython manage.py runserver\n```\n\n#### pre-commit\n\npre-commit is a git hook which runs every time you make a commit to catch linting and formatting errors early.  \n\n```sh\npre-commit install\n```\n\n\u003e Hint: if the world is on fire, production servers down, clown at your doorstep and you don't have time to make linters happy, add `-n` to `git commit` command (CI will still be mad though).\n\n### Setting up Docker\n\nDocker (with help of compose) lets you launch entire project including database locally without installing anything.\n\n1- To get started with docker, install it from [here](https://docs.docker.com/get-docker/) and (optionally) install [docker engine](https://docs.docker.com/engine/install/).\n\n2- Launch project by running `docker compose -f dev-compose.yml up --build`.\n\n### Try it out\n\nAfter everything is done, you can access the web UI at http://localhost:8000/. Here you will see the automatic documentation for the API and you can test out the API end points.\n\nSome other useful links:\n- http://localhost:8000/admin -\u003e View all accounts and edit existing ones.\n- http://localhost:8000/accounts/register -\u003e Create an account.\n- http://localhost:8000/accounts/login-credentials -\u003e Test loging in with a username and password.\n- http://localhost:8000/accounts/login-token -\u003e Test loging in with a token (see admin page if you lost the token after login with credentials).\n\nYou can also use [Bruno](https://www.usebruno.com/) (a Postman alternative) to test out the API. \nThe Bruno project is included in the repository and you can find it in the 'api-collection' folder in the root of the repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funitystation%2Fcentral-command","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funitystation%2Fcentral-command","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funitystation%2Fcentral-command/lists"}