├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── config.yml ├── docker-compose.yml ├── docs ├── api │ ├── restful.md │ └── sockets.md ├── fonts │ ├── Figtree-VariableFont_wght.ttf │ └── Iosevka-Regular.ttf ├── images │ ├── antimony-arch.svg │ ├── antimony-title.png │ ├── favicon-light.png │ └── logo.svg ├── implementation │ ├── architecture.md │ ├── authentication.md │ └── labs.md ├── index.md ├── manual │ ├── configuration.md │ ├── development-setup.md │ └── glossary.md ├── overrides │ ├── .icons │ │ └── logo.svg │ ├── main.html │ └── partials │ │ └── copyright.html ├── quick-start.md └── stylesheets │ └── extra.css ├── mkdocs.yml ├── postgres └── init-database.sh └── requirements.txt /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/README.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/config.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/api/restful.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/api/restful.md -------------------------------------------------------------------------------- /docs/api/sockets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/api/sockets.md -------------------------------------------------------------------------------- /docs/fonts/Figtree-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/fonts/Figtree-VariableFont_wght.ttf -------------------------------------------------------------------------------- /docs/fonts/Iosevka-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/fonts/Iosevka-Regular.ttf -------------------------------------------------------------------------------- /docs/images/antimony-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/images/antimony-arch.svg -------------------------------------------------------------------------------- /docs/images/antimony-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/images/antimony-title.png -------------------------------------------------------------------------------- /docs/images/favicon-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/images/favicon-light.png -------------------------------------------------------------------------------- /docs/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/images/logo.svg -------------------------------------------------------------------------------- /docs/implementation/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/implementation/architecture.md -------------------------------------------------------------------------------- /docs/implementation/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/implementation/authentication.md -------------------------------------------------------------------------------- /docs/implementation/labs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/implementation/labs.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/manual/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/manual/configuration.md -------------------------------------------------------------------------------- /docs/manual/development-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/manual/development-setup.md -------------------------------------------------------------------------------- /docs/manual/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/manual/glossary.md -------------------------------------------------------------------------------- /docs/overrides/.icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/overrides/.icons/logo.svg -------------------------------------------------------------------------------- /docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/overrides/main.html -------------------------------------------------------------------------------- /docs/overrides/partials/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/overrides/partials/copyright.html -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /postgres/init-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/postgres/init-database.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimony-team/antimony/HEAD/requirements.txt --------------------------------------------------------------------------------