Development

If you want to contribute to Django Country Kit, follow these steps to set up your development environment:

  1. Install pipenv if you haven’t already:

    pip install pipenv
    
  2. Clone the repository:

    git clone https://github.com/your_username/django-country-kit.git
    
  3. Navigate to the project directory:

    cd django-country-kit
    
  4. Install development dependencies:

    pipenv install --dev
    
  5. Activate the virtual environment:

    pipenv shell
    
  6. Run migrations:

    python manage.py migrate
    
  7. Run collectstatic:

    python manage.py collectstatic
    
  8. Start the development server:

    python manage.py runserver