Skip to content

Quickstart

Before we start generating our project, make sure you already have everything needed.

Generate project

Run the following command to create a new project, on your current directory:

cookiecutter gh:marcohenriques/python-project-skeleton

During this process you’ll be prompted for several inputs to configure your project.

Setup new generated project

First, go to your project directory:

cd <my_project_name>

Then, to install all the dependencies just run:

make install

To make sure everything is ok, you can run:

make test

If all the tests passed without issues, you’re good to go 🚀