diff --git a/src/ohmyapi/core/templates/app/models.py.j2 b/src/ohmyapi/core/templates/app/models.py.j2 index a0fc523..6ffbcd9 100644 --- a/src/ohmyapi/core/templates/app/models.py.j2 +++ b/src/ohmyapi/core/templates/app/models.py.j2 @@ -1,6 +1,6 @@ from ohmyapi.db import Model, field -class MyModel(Model): - id: int = field.IntField(min=1, pk=True) - ... +# class MyModel(Model): +# id: int = field.IntField(min=1, pk=True) +# ... diff --git a/src/ohmyapi/core/templates/project/settings.py.j2 b/src/ohmyapi/core/templates/project/settings.py.j2 index 5f42a26..6d65f01 100644 --- a/src/ohmyapi/core/templates/project/settings.py.j2 +++ b/src/ohmyapi/core/templates/project/settings.py.j2 @@ -1,5 +1,7 @@ # {{ project_name }} settings.py PROJECT_NAME = "MyProject" DATABASE_URL = "sqlite://db.sqlite3" -INSTALLED_APPS = [] +INSTALLED_APPS = [ + #'ohmyapi_auth', +]