Add uncloud_storage template app
This commit is contained in:
parent
3b87a47430
commit
33cc2b2111
8 changed files with 18 additions and 0 deletions
|
@ -62,6 +62,7 @@ INSTALLED_APPS = [
|
|||
'rest_framework',
|
||||
'uncloud_pay',
|
||||
'uncloud_auth',
|
||||
'uncloud_storage',
|
||||
'uncloud_vm',
|
||||
'ungleich_service',
|
||||
'opennebula'
|
||||
|
|
0
uncloud/uncloud_storage/__init__.py
Normal file
0
uncloud/uncloud_storage/__init__.py
Normal file
3
uncloud/uncloud_storage/admin.py
Normal file
3
uncloud/uncloud_storage/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
uncloud/uncloud_storage/apps.py
Normal file
5
uncloud/uncloud_storage/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class UncloudStorageConfig(AppConfig):
|
||||
name = 'uncloud_storage'
|
0
uncloud/uncloud_storage/migrations/__init__.py
Normal file
0
uncloud/uncloud_storage/migrations/__init__.py
Normal file
3
uncloud/uncloud_storage/models.py
Normal file
3
uncloud/uncloud_storage/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
uncloud/uncloud_storage/tests.py
Normal file
3
uncloud/uncloud_storage/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
uncloud/uncloud_storage/views.py
Normal file
3
uncloud/uncloud_storage/views.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
Reference in a new issue