initial commit

This commit is contained in:
root
2020-05-27 23:30:11 -04:00
commit a86326db73
33 changed files with 229 additions and 0 deletions

0
managemedia/__init__.py Normal file
View File

Binary file not shown.

Binary file not shown.

Binary file not shown.

3
managemedia/admin.py Normal file
View File

@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
managemedia/apps.py Normal file
View File

@@ -0,0 +1,5 @@
from django.apps import AppConfig
class ManagemediaConfig(AppConfig):
name = 'managemedia'

View File

3
managemedia/models.py Normal file
View File

@@ -0,0 +1,3 @@
from django.db import models
class

3
managemedia/tests.py Normal file
View File

@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

6
managemedia/urls.py Normal file
View File

@@ -0,0 +1,6 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
]

4
managemedia/views.py Normal file
View File

@@ -0,0 +1,4 @@
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello, ur at managemedia")