mote

(★ 32)

Python Flask project used to aggregate and distribute IRC meeting minutes and logs for the Fedora Project

File Explorer

  • .coveragerc
  • .dockerignore
  • .gitignore
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • Dockerfile
  • doformat.sh
  • fedora-messaging.toml
  • LICENSE
  • poetry.lock
  • pyproject.toml
  • README.md
  • renovate.json
  • tox.ini

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

podman build

View Details ▼

Daemonless tool for building container images.

podman build {{path/to/directory}}

Create an image using a `Dockerfile` or `Containerfile` in the specified directory:

podman build {{[-t|--tag]}} {{image_name:version}} {{path/to/directory}}

Create an image with a specified tag:

podman build {{[-f|--file]}} {{Containerfile.different}} .

Create an image from a non-standard file:

🔍

podman run

View Details ▼

Run a command in a new Podman container.

podman run {{image:tag}} {{command}}

Run command in a new container from a tagged image:

podman run {{[-d|--detach]}} {{image:tag}} {{command}}

Run command in a new container in background and display its ID:

podman run --rm {{[-it|--interactive --tty]}} {{image:tag}} {{command}}

Run command in a one-off container in interactive mode and pseudo-TTY:

🔍

virtualenv

View Details ▼

Create virtual isolated Python environments.

virtualenv {{path/to/venv}}

Create a new environment:

virtualenv --prompt {{prompt_prefix}} {{path/to/venv}}

Customize the prompt prefix:

virtualenv {{[-p|--python]}} {{path/to/pythonbin}} {{path/to/venv}}

Use a different version of Python with virtualenv:

// repository documentation