Skip to content

Commit

Permalink
4.app 만들기
Browse files Browse the repository at this point in the history
  • Loading branch information
egoing committed Dec 5, 2021
1 parent 58dd618 commit 827cb0b
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 0 deletions.
Empty file added myapp/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions myapp/admin.py
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
6 changes: 6 additions & 0 deletions myapp/apps.py
@@ -0,0 +1,6 @@
from django.apps import AppConfig


class MyappConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'myapp'
Empty file added myapp/migrations/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions myapp/models.py
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
3 changes: 3 additions & 0 deletions myapp/tests.py
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
3 changes: 3 additions & 0 deletions myapp/views.py
@@ -0,0 +1,3 @@
from django.shortcuts import render

# Create your views here.

0 comments on commit 827cb0b

Please sign in to comment.