- Enable meetings app in INSTALLED_APPS and add URL routing - Switch from PostgreSQL to SQLite for default database configuration - Remove meetings directory from .gitignore - Move API root endpoint from users app to main URL configuration - Remove HIPAA-specific email and compliance settings (EMAIL_ENCRYPTION_KEY, HIPAA_EMAIL_CONFIG, BAA_VERIFICATION) - Add SITE_NAME and ENCRYPTION_KEY environment variables - Regenerate initial user migrations These changes simplify the development setup by using SQLite as the default database and removing complex compliance configurations while enabling the core meetings functionality.
10 lines
294 B
Python
10 lines
294 B
Python
from django.urls import path, include
|
|
from django.contrib import admin
|
|
from .views import api_root
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
path('api/auth/', include('users.urls')),
|
|
path('api/meetings/', include('meetings.urls')),
|
|
path('', api_root, name='api-root'),
|
|
] |