Installation
Run owl in five lines:
python3 -m venv env
source env/bin/activate
git clone https://github.com/gechandesu/owl.git && cd owl
pip install -r requirements.txt
python owl.py
App is now available at http://localhost:5000/.
owl CLI
CLI is not implemented yet. The application is expected to synchronize files with the server. While you can use rsync. Example script:
#!/usr/bin/env bash
rsync -ruv /path/to/local/files/ \
username@server:/path/to/files/on/server/ \
&& echo Done.