Skip to main content

A Django app create apps with reactjs

Project description

Django Apps for my personal Django app to be used in my projects.

Detailed documentation is in the “docs” directory.

Quick start

  1. Install Dependecies:

    pip install djangorestframework==3.11.0 pip install django-imagekit==4.0.2 pip install django-rest-knox==4.1.0 pip install pilkit==2.0 pip install Pillow==7.1.0 pip install cryptography==2.9 pip install pycrypto==2.6.1

  2. Add to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'rest_framework',
        'knox',
        'imagekit',
        'users_extended',
        'permissions',
        'app_configurations',
    ]
  3. To get apis urls:

    from utils.apis.apis_utilities import DefaultRouter
    from users_extended.urls import router as users_router
    from permissions.urls import router as permissions_router
    from app_configurations.urls import router as app_configurations_router
    
    router = DefaultRouter()
    router.extend(users_router)
    router.extend(permissions_router)
    router.extend(app_configurations_router)
    
    urlpatterns = [
        path('api/', include(router.urls)),
        ...
    ]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-crud-reactjs-fagsoft-0.6.tar.gz (14.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page