Skip to main content

An unopinionated project builder for everyone.

Project description

Otek is a command line tool to help you make new projects with ease.

Otek stores templates of projects so you don’t have to remake the same file structure every time your start developing a new idea. Just make the template once and keep getting started from that. Otek avoids being opinonated because the user knows what project format is best. This is different from projects like yeoman where the user has no control over their project structure.

What’s with the name? “Otek” is a translitaterion of the hebrew word for “copy”. I’m using hebrew because using a different language is the only way to find a name that wasn’t taken.

Installation

Just use pip!

pip install otek

.otek Folder

In the .otek folder there’s an otekrc which stores the defaults values for variables in JSON format. It supports full JSON. To see how to use variables, read the next section.

Templates

Templates let you pre-process your projects with different variables. First create a template project in your ~/.otek folder. This will look like

# ~/.otek/example-project/main.py
__author__ = '<% name %>'

print('hello, world.  This is the <% PROJNAME %> ')

Next create a new project for your template to be created

$ mkdir example && cd example
$ otek create example-project

Now our main python file has subsituted the name for Jacob Wunder

# ~/Documents/example/main.py
__author__ = 'Jacob Wunder'

print('hello, world.  This is the example-project ')

To change values for certain variables on a project to project basis, just use the -v flag followed by a variable name. WARNING: only works for top-level variables.

otek create example-project -v name="NOT JACOB WUNDER"

Now value of name is ‘Linus Torvalds’ so the __author__ will be Linus Torvalds

# ~/Documents/example/main.py
__author__ = 'Linus Torvalds'

print('hello, world.  This is the example-project ')

create Script

Need more than files to create your project? Just create a file called create which will be run upon creation time as a bash script. This could be used to run npm init or npm install if you already have a default package.json.

Roadmap

  • Download other people’s project templates using github in a similar way to homebrew formulae

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

otek-0.1.7.tar.gz (4.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page