mote
Python Flask project used to aggregate and distribute IRC meeting minutes and logs for the Fedora Project
File Explorer
- main.yml
- __init__.py
- call.py
- converters.py
- find.py
- late.py
- redis.py
- bootstrap-blackbox.min.css
- bootstrap.min.css
- custom_fonts.css
- fontawesome-all.min.css
- fragment.css
- fullcalendar.css
- fa-regular-400.ttf
- fa-regular-400.woff
- fa-regular-400.woff2
- fa-solid-900.ttf
- fa-solid-900.woff
- fa-solid-900.woff2
- Montserrat-Bold.ttf
- Montserrat-Medium.otf
- Montserrat-Regular.ttf
- OpenSans-Bold.ttf
- OpenSans-BoldItalic.ttf
- OpenSans-Italic.ttf
- OpenSans-Regular.ttf
- 404_not_found.svg
- favi.png
- Fedora_logo.png
- Fedora_logo_dark.png
- logo.svg
- logoteal.png
- bootstrap.bundle.min.js
- calview.js
- darkmode.min.js
- easy.qrcode.min.js
- fragment.js
- fullcalendar.js
- jquery.min.js
- socket.io.js
- aboutpage.html.j2
- base.html.j2
- e404page.html.j2
- event_summary.html.j2
- mainpage.html.j2
- statfile.html.j2
- __init__.py
- config.py
- consume.py
- main.py
- tasks.py
- worker.py
- fedora_iot_working_group_meeting.2020-06-10-14.10.html
- fedora_iot_working_group_meeting.2020-06-10-14.10.log.html
- fedora_iot_working_group_meeting.2020-06-10-14.10.log.txt
- fedora_iot_working_group_meeting.2020-06-10-14.10.txt
- magazine.2020-06-10-12.02.html
- magazine.2020-06-10-12.02.log.html
- magazine.2020-06-10-12.02.log.txt
- magazine.2020-06-10-12.02.txt
- magazine_editorial_board.2020-06-10-12.02.log.txt
- zodbot_test.2016-01-28-23.15.html
- test.tgz
- conftest.py
- datagrepper_sample.json
- test_find.py
- test_fragedpt.py
- test_late.py
- test_main.py
- test_meeting_logs.py
- utility.py
- .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
jsDelivrjsDelivr 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 ▼
git clone
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 ▼
podman build
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 ▼
podman run
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 ▼
virtualenv
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:
