├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── docs ├── Makefile ├── _static │ ├── custom.css │ ├── favicon.png │ ├── jupyter_server_logo.svg │ └── logo.png ├── conf.py ├── index.rst ├── make.bat ├── requirements.txt ├── scripts │ └── gen_contributors.py ├── team.md └── team │ ├── becoming-member.md │ ├── contributors-jupyter-server.yaml │ ├── decision-making.md │ └── member-guide.md └── readthedocs.yml /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | docs/team/*.txt 3 | .ipynb_checkpoints 4 | .vscode 5 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/_static/favicon.png -------------------------------------------------------------------------------- /docs/_static/jupyter_server_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/_static/jupyter_server_logo.svg -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/scripts/gen_contributors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/scripts/gen_contributors.py -------------------------------------------------------------------------------- /docs/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/team.md -------------------------------------------------------------------------------- /docs/team/becoming-member.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/team/becoming-member.md -------------------------------------------------------------------------------- /docs/team/contributors-jupyter-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/team/contributors-jupyter-server.yaml -------------------------------------------------------------------------------- /docs/team/decision-making.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/team/decision-making.md -------------------------------------------------------------------------------- /docs/team/member-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/docs/team/member-guide.md -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-server/team-compass/HEAD/readthedocs.yml --------------------------------------------------------------------------------