Skip to content

Commit

Permalink
Cria app de receitas
Browse files Browse the repository at this point in the history
  • Loading branch information
brnocesar committed Nov 6, 2020
1 parent 938745e commit 60f0ad1
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
venv/
db.sqlite3
*/__pycache__/
Empty file added apps/receitas/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions apps/receitas/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
5 changes: 5 additions & 0 deletions apps/receitas/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from django.apps import AppConfig


class ReceitasConfig(AppConfig):
name = 'receitas'
Empty file.
3 changes: 3 additions & 0 deletions apps/receitas/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
3 changes: 3 additions & 0 deletions apps/receitas/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
3 changes: 3 additions & 0 deletions apps/receitas/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.shortcuts import render

# Create your views here.

0 comments on commit 60f0ad1

Please sign in to comment.