A tool to broadcast notifications across various interfaces


Keywords
notify, server
License
MIT
Install
pip install proyo==0.1.8

Documentation

Proyo

A command line tool to create new software projects

Proyo is a tool to generate boilerplate code for new software projects for any language. Think create-react-app, but for any language and framework.

Usage

Create a new Python script:

proyo create python script --as-package

Create a new React app:

proyo create react app --license apache

Create a new C++ app:

proyo create cpp app --build-system meson

View what templates are available:

proyo -h

Installation

Install via pip:

pip3 install proyo

Philosophy

Proyo follows the idea that a good default is better than not choosing at all. For example, by default apps are created using the MIT license.

Adding Templates

You can add a new language by creating a new folder in proyo/templates/create. Read more about the powers of Proyo's templating system in the tutorial.