Metadata-Version: 2.1
Name: startdomain
Version: 0.2.6
Summary: A django app to create apps aligned with [Django API Domains](https://phalt.github.io/django-api-domains/)
Home-page: https://pypi.org/project/startdomain/
License: MIT
Keywords: django,scripts
Author: MuhammadMoustafa
Author-email: engmuhammadmoustafa@gmail.com
Maintainer: MuhammadMoustafa
Maintainer-email: engmuhammadmoustafa@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: django (>=4.0,<7.0)
Requires-Dist: djangorestframework (>=3.0,<4.0)
Project-URL: Documentation, https://github.com/MuhammadMoustafa/startdomain#readme
Project-URL: Repository, https://github.com/MuhammadMoustafa/startdomain/
Description-Content-Type: text/markdown

# startdomain

A django app to create apps aligned with [Django API Domains](https://phalt.github.io/django-api-domains/)

## Usage

1- Install the library

    poetry add startdomain
    or:
    pip install startdomain

2- add the app to your settings.py

    INSTALLED_APPS = [
        ...
        'startdomain',
        ...
    ]

3- run the following command

    python manage.py startdomain <some_app>

## Options and Flags

- **settings.py options:**
  - SNIPPTET_FOLDER: Override the default template folder
- **command line flags:**
  - -f: remove the app if exists

