Skip to content

Commit

Permalink
Remove dev mode
Browse files Browse the repository at this point in the history
  • Loading branch information
SSIvanov19 authored Mar 30, 2024
1 parent 3996c55 commit eeffd3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/server/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
SECRET_KEY = 'django-insecure-vx=h&@d!(im!!-r)^$e!&%kzferzcn2!x3a!5*i-%lb*%izhfh'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
DEBUG = False

ALLOWED_HOSTS = [
"catchupserver.azurewebsites.net",
Expand Down
2 changes: 1 addition & 1 deletion server/server/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from . import settings

urlpatterns = [
path('', lambda request: HttpResponse("Welcome to CatchUp API", content_type="text/plain")),
path('', lambda request: HttpResponse("Welcome to CatchUp API!", content_type="text/plain")),
path('admin/', admin.site.urls),
path("api/", include("products.urls")),
path("api/", include("scrapers.urls")),
Expand Down

0 comments on commit eeffd3c

Please sign in to comment.