Skip to content

Commit

Permalink
adicionando gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
michelebswm committed Sep 5, 2023
1 parent 2417694 commit a5bea33
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.pyc
__pycache__
Empty file added db.sqlite3
Empty file.
Empty file added filme/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions filme/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.
6 changes: 6 additions & 0 deletions filme/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.apps import AppConfig


class FilmeConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'filme'
Empty file added filme/migrations/__init__.py
Empty file.
7 changes: 7 additions & 0 deletions filme/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from django.db import models

# Criar o filme

# Criar os episódios

# Criar o usuário
3 changes: 3 additions & 0 deletions filme/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 filme/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 a5bea33

Please sign in to comment.