Skip to content

conda/conda-dot-org

Folders and files

NameName
Last commit message
Last commit date
Oct 2, 2024
Nov 18, 2024
Jan 29, 2025
Dec 9, 2024
Nov 7, 2024
Nov 24, 2024
Jan 29, 2025
Oct 17, 2023
Nov 7, 2024
Feb 13, 2025
Nov 24, 2022
Oct 17, 2023
Apr 2, 2024
Aug 26, 2022
Dec 9, 2024
Oct 17, 2023
Feb 6, 2025
Nov 18, 2024
Nov 18, 2024
Oct 2, 2024

conda-dot-org

Netlify Status

This is the repository for the conda.org community website. To become involved:

Code of Conduct

This repo and the web site it generates are governed by the conda organization code of conduct.

Implementation details

It is built using Docusaurus 2, a modern static website generator. The contents are structured like this:

  • .github/: Workflows for deployment.
  • blog/: Blog posts. Can use .md (Markdown), .mdx (Markdown with react) or .js extensions. Complex posts can use its own directory.
  • docs/: Documentation with navigation and sidebars.
  • src/: Resources (React components, custom CSS) and logic for standalone pages
    • src/pages: Standalone pages. This directory contains the homepage (index.js) and other simpler pages (community.md).
  • static/: Static resources like images and icons.
  • babel.config.js: Configuration to install docusaurus.
  • docusaurus.config.js: Configuration for docusaurus. Includes variables like title and description, navigation menu items, etc.
  • package.json: More configuration to install docusaurus.
  • sidebars.js: Support for sidebars. We use in automatic mode now.

Non listed directories or files are generated automatically are not relevant for modifications.

Local Development

$ git clone
$ cd conda-dot-org
$ npm install
$ npm run start

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

Deployment

Deploys by Netlify