Skip to content

Commit 51178ce

Browse files
committed
v1.0.45 - Refactoring, Bump UI, Integrate Jazzmin
1 parent 6fe9650 commit 51178ce

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+89
-103
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions

Dockerfile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9
1+
FROM python:3.12
22

33
# set environment variables
44
ENV PYTHONDONTWRITEBYTECODE 1
@@ -16,8 +16,5 @@ COPY . .
1616
RUN python manage.py makemigrations
1717
RUN python manage.py migrate
1818

19-
# Generate API
20-
RUN python manage.py generate-api -f
21-
2219
# gunicorn
23-
CMD ["gunicorn", "--config", "gunicorn-cfg.py", "core.wsgi"]
20+
CMD ["gunicorn", "--config", "gunicorn-cfg.py", "config.wsgi"]

README.md

Lines changed: 2 additions & 1 deletion
File renamed without changes.
File renamed without changes.

dyn_api/apps.py renamed to apps/dyn_api/apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
class DynApiConfig(AppConfig):
99
default_auto_field = 'django.db.models.BigAutoField'
10-
name = 'dyn_api'
10+
name = 'apps.dyn_api'
File renamed without changes.
File renamed without changes.
File renamed without changes.

dyn_api/urls.py renamed to apps/dyn_api/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from django.contrib import admin
77
from django.urls import path
8-
from dyn_api import views
8+
from apps.dyn_api import views
99

1010
urlpatterns = [
1111
path('api/', views.index, name="dynamic_api"),

0 commit comments

Comments
 (0)