A simple way to store and manage snippets of code.
To initialise snippy:
snippy init "https://snippy.my.domain" "my-auth-token"
To upload a snippet:
snippy upload example-id example-file.go
To delete a snippet:
snippy delete example-id
To download a snippet:
snippy download example-id
To download a snippet to your clipboard:
snippy download -c example-id
Snippy uses Docker and docker-compose to run its server. You will need both installed to run it.
To run the server:
docker-compose up -d
You will need a .env
file in the root of the project with the following variables:
SNIPPY_AUTH=my-auth-token
This project is licensed under the MIT License - see the LICENSE file for details.