diff options
author | Nao Pross <np@0hm.ch> | 2020-10-16 19:18:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-16 19:18:32 +0200 |
commit | d29c58e2ec802125607d8b333cdd372545d45673 (patch) | |
tree | 38f755ca35a7d6b1d093a7e5c770683bd4c69424 /README.md | |
parent | Move into version control (diff) | |
download | Muddle-d29c58e2ec802125607d8b333cdd372545d45673.tar.gz Muddle-d29c58e2ec802125607d8b333cdd372545d45673.zip |
Create README.md
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..c70bad3 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# Muddle (Work in progress!) +A desktop Moodle client, because the web interface is painfully slow if you quickly need to grab a file. + +## Configuration +On linux, copy `muddle.ini.sample` to `~/.config/muddle/muddle.ini` and add a token. +On other platforms there is no specific path implemented yet, so it will look for a file `muddle.ini` in the same folder as the executable. + +## Development +This is written in Python 3 + PyQt. Virtualenv is probably the most comfortable way to work. +If you don't know how to set up a venv, type in you terminal (while in the project directory): +```bash +muddle $ python3 -m venv venv +muddle $ source ./venv/bin/activate +muddle $ pip3 install -r requirements.txt +muddle $ ./muddle --gui +``` + +The code is a bit garbage, as I hacked it toghether in one morning, though I've tried to clean it up a bit. |