Commit 57dd9d98 authored by 赵威's avatar 赵威

add app

parent 90a3297d
......@@ -36,6 +36,7 @@ INSTALLED_APPS = [
"django.contrib.messages",
"django.contrib.staticfiles",
"django_extensions",
"face_similarity",
]
MIDDLEWARE = [
......@@ -74,11 +75,11 @@ WSGI_APPLICATION = "base.wsgi.application"
DATABASES = {
"default": {
"ENGINE": "django.db.backends.mysql",
"NAME": "doris_test",
"USER": "work",
"PASSWORD": "Gengmei1",
"HOST": "bj-cdb-6slgqwlc.sql.tencentcdb.com",
"PORT": "62120",
"NAME": "doris_prod",
"USER": "doris",
"PASSWORD": "o5gbA27hXHHm",
"HOST": "172.16.30.136",
"PORT": "3306",
"OPTIONS": {
"init_command": "SET foreign_key_checks = 0;",
"charset": "utf8mb4", # 为了支持emoji表情
......
from django.contrib import admin
# Register your models here.
from django.apps import AppConfig
class FaceSimilarityConfig(AppConfig):
name = 'face_similarity'
from django.db import models
# Create your models here.
from django.test import TestCase
# Create your tests here.
from django.shortcuts import render
# Create your views here.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment