Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
nvo87 committed Nov 19, 2023
1 parent eb57f73 commit b7677f3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions {{cookiecutter.project_slug}}/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ test:
cd src && ./manage.py compilemessages
cd src && pytest --dead-fixtures
cd src && pytest -x

pr: fmt lint test
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from rest_framework import serializers

# Create your DRF serializers here, rename file and add to __init__.py.
# Rename this file to singular form of your entity, e.g. "orders.py -> order.py". Add your class to __init__.py.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from app.api.viewsets import DefaultModelViewSet

# Create your API views and viewsets here.
# Rename this file to singular form of your entity, e.g. "orders.py -> order.py". Add your class to __init__.py.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django.db import models

from app.models import DefaultModel
from app.models import DefaultModel, TimeStampedModel

# Create your model here. One model is one file. Rename file and add model to __init__.py.
# Rename this file to singular form of your entity, e.g. "orders.py -> order.py". Add your class to __init__.py.

0 comments on commit b7677f3

Please sign in to comment.