1. Getting Started

To get started with AppCraft, follow these steps:

1.1. Installation

To install AppCraft, simply run the following command:

pip install appcraft

1.2. Starting a New Project

To start a new project, follow these steps:

  1. Create a new directory for your project:
    mkdir project_name
    cd project_name
    
  2. Initialize the project using one of the following commands:

  • To initialize the project with the desired templates using the following command:
    appcraft init <template_names>
    
  • Where <template_names> should be replaced by the names of the templates you want to use, separated by spaces. For example:
    appcraft init logs locales flask_ui flask_api sqlalchemy
    

    This will initialize your project with the specified templates. Make sure to separate each template name with a space.

  • Or, to list available templates
    appcraft list_templates
    

    For more details on available templates, refer to the Templates Documentation.