Metadata-Version: 2.1
Name: ctrl-v
Version: 0.1.1
Summary: Code snippet store
Home-page: UNKNOWN
Author: Bitto Bennichan
Author-email: bittobennichan@protonmail.com
License: MIT
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4
Requires-Dist: Flask-Login
Requires-Dist: Flask-MDE (>=1.2.0)
Requires-Dist: pymdown-extensions
Requires-Dist: Flask-SQLAlchemy
Requires-Dist: Flask-WTF
Requires-Dist: html5lib
Requires-Dist: Markdown
Requires-Dist: waitress
Requires-Dist: bleach

**ctrl-v** is a markdown code snippet store written in Python using the Flask framework.  Store your code snippets that you always keep missing!

### Installation
Use the following command to install ctrl-v from [PyPI][1] 

    $ pip install ctrl-v

### Launch ctrl-v

After installing ctrl-v you can launch the application from your terminal / command line. 

    $ ctrl-v
    Serving onhttp://localhost:5000

You can also launch ctrl-v using `$ python -m ctrl-v`.

By default, the app runs on port  5000 on 127.0.0.1. 

You can however choose to run it on a different port or host using the `--port` and `--host` options.

    $ ctrl-v --host 0.0.0.0 --port 5500
    Serving on http://0.0.0.0:5500

### Password protection

To add a username and password to protect you site, use the `protect` command.

    $ ctrl-v protect
    Username: bitto
    Password: 
    Repeat for confirmation: 
    Your site is now protected.

To remove password protection use the `removeprotect` command.

    $ ctrl-v removeprotect
    Protection is removed

### Uninstall ctrl-v

    $ pip uninstall ctrl-v

  [1]: https://pypi.org/



