Skip to main content

A Django Web App for a Nursing Home Facility

Project description

Camillus MedHaven Portal: A Django Web App for a Nursing Home Facility

Installation

  1. Add cm_portal and its dependency to your INSTALLED_APPS like this:
    INSTALLED_APPS = [    
        ...
        'cm_portal.apps.CmPortalConfig',
        'widget_tweaks',
        'django_tables2',
        ...
    ] 
  1. Append the following environment variables to your settings.py.

    STATIC_ROOT = os.path.join(BASE_DIR, 'static')
    MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
    MEDIA_URL = '/media/'
    LOGIN_REDIRECT_URL = '/'
    LOGOUT_REDIRECT_URL = '/'
    
  2. Include the cm_portal URLconf in your project urls.py like this:

    from django.conf.urls import include
    urlpatterns += [
        path('', include('cm_portal.urls')),
    ]

    urlpatterns += [
        path('accounts/', include('django.contrib.auth.urls')),
    ]
  1. Run python manage.py migrate to create the cm_portal models.

  2. Start the development server and visit http://127.0.0.1:8000/ to begin using app.

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

cm_portal-0.2.1.tar.gz (329.0 kB view hashes)

Uploaded Source

Built Distribution

cm_portal-0.2.1-py3-none-any.whl (383.8 kB view hashes)

Uploaded Python 3

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