Cloud Bash History app using python and flask
The app is currently under heavy development
To use an alpha version of the app, try this:
- Go to http://histsync.herokuapp.com/
- Login with github
- Click "My Profile" in the navbar
- Click "Show API key"
- Install bash-preexec
- Install histsync-client.py (put it into your ~)
- Add this to your .bashrc / .bash_profile:
preexec() {
echo "just typed $1";
~/histsync-client.py --api_key <your_api_key> --user <your_username> "$1" >>~/histsync.log 2>&1;
}