nandi/frqpublic Fork 0
a9954d91220820d8c3bf12c51134e0310e05f455
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Not a fourth source tree: containers/ becomes .modal/ b0ed0ba · on a9954d91220820d8c3bf12c51134e0310e05f455 · nandi · 5d ago
main.py · 15 lines · 335 BPython Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#!/usr/bin/env python3
"""The app. Replace this with something that earns its container."""

import os
import platform


def main():
    print(os.environ.get("GREETING", "hello"))
    print(f"python   {platform.python_version()}")
    print(f"host     {platform.node()} ({platform.machine()})")


if __name__ == "__main__":
    main()