Project Scaffolding
===================

Django Easystart can be used as base to create a new project. To do this, you need follow the next steps:

Clone the repository

.. code-block:: bash
    
    git clone git@github.com:StartHere-Ventures/django-easystart.git


Go to the directory where you will work your new project; and run the file setup.py from Django Easystart project.

.. code-block:: bash
    
    mkdir new_project
    cd new_project
    python3 <path django-easystart>/setup.py 


During the process you will need set some values, like this:

.. code-block:: bash

    Description (Default: Django Easystart): 
    Slug (Default: easystart): 
    Domain (Default: easystart.com): 


Let's ready, now you can to follow the :ref:`quickstart` steps to run your new project.