Starter Kits

Get started quickly with pre-configured Dracory starter kits.

Starter Kits

Dracory provides several starter kits to help you get started with your application quickly. These kits include pre-configured templates for common application types, allowing you to focus on building your application's unique features rather than setting up boilerplate code.

Available Starter Kits

Using a Starter Kit

To use a starter kit, follow these steps:

  1. Clone the starter kit repository:
    git clone https://github.com/dracory/basic-starter myapp
    
  2. Navigate to the project directory:
    cd myapp
    
  3. Install dependencies:
    go mod tidy
    
  4. Configure your environment:
    cp .env.example .env
    # Edit .env with your configuration
    
  5. Run the application:
    go run main.go
    

Customizing a Starter Kit

Each starter kit is designed to be a starting point for your application. You can customize it to fit your specific needs by:

  • Adding new controllers, models, and views
  • Modifying the existing routes and middleware
  • Customizing the UI and styling
  • Integrating additional packages and services

The starter kits follow Dracory's best practices and coding conventions, making it easy to extend and maintain your application as it grows.

Menu