diff --git a/Echo_Z/__pycache__/__init__.cpython-39.pyc b/Echo_Z/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index b66f4b8..0000000 Binary files a/Echo_Z/__pycache__/__init__.cpython-39.pyc and /dev/null differ diff --git a/Echo_Z/__pycache__/settings.cpython-39.pyc b/Echo_Z/__pycache__/settings.cpython-39.pyc deleted file mode 100644 index ad38fe2..0000000 Binary files a/Echo_Z/__pycache__/settings.cpython-39.pyc and /dev/null differ diff --git a/Echo_Z/__pycache__/urls.cpython-39.pyc b/Echo_Z/__pycache__/urls.cpython-39.pyc deleted file mode 100644 index c25ef8c..0000000 Binary files a/Echo_Z/__pycache__/urls.cpython-39.pyc and /dev/null differ diff --git a/Echo_Z/__pycache__/wsgi.cpython-39.pyc b/Echo_Z/__pycache__/wsgi.cpython-39.pyc deleted file mode 100644 index 1d86691..0000000 Binary files a/Echo_Z/__pycache__/wsgi.cpython-39.pyc and /dev/null differ diff --git a/README.md b/README.md index bda9538..ab17c86 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@ ├── ReadMe.md // 帮助文档 + ├── media // 文章图片存放地址 + └── requirements.txt // 项目依赖库列表 # 使用说明 diff --git a/api/__pycache__/__init__.cpython-39.pyc b/api/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index b553116..0000000 Binary files a/api/__pycache__/__init__.cpython-39.pyc and /dev/null differ diff --git a/api/__pycache__/admin.cpython-39.pyc b/api/__pycache__/admin.cpython-39.pyc deleted file mode 100644 index b2f0163..0000000 Binary files a/api/__pycache__/admin.cpython-39.pyc and /dev/null differ diff --git a/api/__pycache__/apps.cpython-39.pyc b/api/__pycache__/apps.cpython-39.pyc deleted file mode 100644 index 3188b0e..0000000 Binary files a/api/__pycache__/apps.cpython-39.pyc and /dev/null differ diff --git a/api/__pycache__/models.cpython-39.pyc b/api/__pycache__/models.cpython-39.pyc deleted file mode 100644 index 9b01b34..0000000 Binary files a/api/__pycache__/models.cpython-39.pyc and /dev/null differ diff --git a/api/__pycache__/urls.cpython-39.pyc b/api/__pycache__/urls.cpython-39.pyc deleted file mode 100644 index 572e273..0000000 Binary files a/api/__pycache__/urls.cpython-39.pyc and /dev/null differ diff --git a/api/__pycache__/views.cpython-39.pyc b/api/__pycache__/views.cpython-39.pyc deleted file mode 100644 index 873ef53..0000000 Binary files a/api/__pycache__/views.cpython-39.pyc and /dev/null differ diff --git a/api/migrations/__init__.py b/api/migrations/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/api/migrations/__pycache__/__init__.cpython-39.pyc b/api/migrations/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index a454972..0000000 Binary files a/api/migrations/__pycache__/__init__.cpython-39.pyc and /dev/null differ diff --git a/comment/__pycache__/__init__.cpython-39.pyc b/comment/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index c7019d8..0000000 Binary files a/comment/__pycache__/__init__.cpython-39.pyc and /dev/null differ diff --git a/comment/__pycache__/admin.cpython-39.pyc b/comment/__pycache__/admin.cpython-39.pyc deleted file mode 100644 index 8cf964c..0000000 Binary files a/comment/__pycache__/admin.cpython-39.pyc and /dev/null differ diff --git a/comment/__pycache__/apps.cpython-39.pyc b/comment/__pycache__/apps.cpython-39.pyc deleted file mode 100644 index bdca114..0000000 Binary files a/comment/__pycache__/apps.cpython-39.pyc and /dev/null differ diff --git a/comment/__pycache__/models.cpython-39.pyc b/comment/__pycache__/models.cpython-39.pyc deleted file mode 100644 index 9cf5992..0000000 Binary files a/comment/__pycache__/models.cpython-39.pyc and /dev/null differ diff --git a/comment/migrations/0001_initial.py b/comment/migrations/0001_initial.py deleted file mode 100644 index f0233ed..0000000 --- a/comment/migrations/0001_initial.py +++ /dev/null @@ -1,27 +0,0 @@ -# Generated by Django 4.2.23 on 2025-06-20 02:43 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - initial = True - - dependencies = [ - ] - - operations = [ - migrations.CreateModel( - name='comment', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('comment_Content', models.TextField(verbose_name='评论内容')), - ('comment_User', models.CharField(max_length=100, verbose_name='评论者')), - ('comment_Time', models.DateTimeField(verbose_name='评论时间')), - ], - options={ - 'verbose_name': '评论', - 'verbose_name_plural': '评论管理', - }, - ), - ] diff --git a/comment/migrations/0002_comment_archives_id.py b/comment/migrations/0002_comment_archives_id.py deleted file mode 100644 index 49d86e2..0000000 --- a/comment/migrations/0002_comment_archives_id.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 4.2.23 on 2025-06-20 03:01 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('comment', '0001_initial'), - ] - - operations = [ - migrations.AddField( - model_name='comment', - name='archives_Id', - field=models.IntegerField(default=0, verbose_name='文章idßß'), - ), - ] diff --git a/comment/migrations/0003_comment_qq_alter_comment_archives_id.py b/comment/migrations/0003_comment_qq_alter_comment_archives_id.py deleted file mode 100644 index 10b3355..0000000 --- a/comment/migrations/0003_comment_qq_alter_comment_archives_id.py +++ /dev/null @@ -1,23 +0,0 @@ -# Generated by Django 4.2.23 on 2025-06-20 04:53 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('comment', '0002_comment_archives_id'), - ] - - operations = [ - migrations.AddField( - model_name='comment', - name='qq', - field=models.IntegerField(default=1000, verbose_name='评论者qq号'), - ), - migrations.AlterField( - model_name='comment', - name='archives_Id', - field=models.IntegerField(default=0, verbose_name='文章id'), - ), - ] diff --git a/comment/migrations/0004_alter_comment_table.py b/comment/migrations/0004_alter_comment_table.py deleted file mode 100644 index 986a9e7..0000000 --- a/comment/migrations/0004_alter_comment_table.py +++ /dev/null @@ -1,17 +0,0 @@ -# Generated by Django 4.2.23 on 2025-06-23 03:17 - -from django.db import migrations - - -class Migration(migrations.Migration): - - dependencies = [ - ('comment', '0003_comment_qq_alter_comment_archives_id'), - ] - - operations = [ - migrations.AlterModelTable( - name='comment', - table='Comment', - ), - ] diff --git a/comment/migrations/0005_rename_archives_id_comment_archives_id_and_more.py b/comment/migrations/0005_rename_archives_id_comment_archives_id_and_more.py deleted file mode 100644 index 1926121..0000000 --- a/comment/migrations/0005_rename_archives_id_comment_archives_id_and_more.py +++ /dev/null @@ -1,33 +0,0 @@ -# Generated by Django 4.2.23 on 2025-06-23 03:21 - -from django.db import migrations - - -class Migration(migrations.Migration): - - dependencies = [ - ('comment', '0004_alter_comment_table'), - ] - - operations = [ - migrations.RenameField( - model_name='comment', - old_name='archives_Id', - new_name='archives_id', - ), - migrations.RenameField( - model_name='comment', - old_name='comment_Content', - new_name='comment_content', - ), - migrations.RenameField( - model_name='comment', - old_name='comment_Time', - new_name='comment_time', - ), - migrations.RenameField( - model_name='comment', - old_name='comment_User', - new_name='comment_user', - ), - ] diff --git a/comment/migrations/__init__.py b/comment/migrations/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/comment/migrations/__pycache__/0001_initial.cpython-39.pyc b/comment/migrations/__pycache__/0001_initial.cpython-39.pyc deleted file mode 100644 index 3df6a79..0000000 Binary files a/comment/migrations/__pycache__/0001_initial.cpython-39.pyc and /dev/null differ diff --git a/comment/migrations/__pycache__/0002_comment_archives_id.cpython-39.pyc b/comment/migrations/__pycache__/0002_comment_archives_id.cpython-39.pyc deleted file mode 100644 index 45c923e..0000000 Binary files a/comment/migrations/__pycache__/0002_comment_archives_id.cpython-39.pyc and /dev/null differ diff --git a/comment/migrations/__pycache__/0003_comment_qq_alter_comment_archives_id.cpython-39.pyc b/comment/migrations/__pycache__/0003_comment_qq_alter_comment_archives_id.cpython-39.pyc deleted file mode 100644 index 189ec9c..0000000 Binary files a/comment/migrations/__pycache__/0003_comment_qq_alter_comment_archives_id.cpython-39.pyc and /dev/null differ diff --git a/comment/migrations/__pycache__/0004_alter_comment_table.cpython-39.pyc b/comment/migrations/__pycache__/0004_alter_comment_table.cpython-39.pyc deleted file mode 100644 index fac7a76..0000000 Binary files a/comment/migrations/__pycache__/0004_alter_comment_table.cpython-39.pyc and /dev/null differ diff --git a/comment/migrations/__pycache__/0005_rename_archives_id_comment_archives_id_and_more.cpython-39.pyc b/comment/migrations/__pycache__/0005_rename_archives_id_comment_archives_id_and_more.cpython-39.pyc deleted file mode 100644 index 7fbc0c9..0000000 Binary files a/comment/migrations/__pycache__/0005_rename_archives_id_comment_archives_id_and_more.cpython-39.pyc and /dev/null differ diff --git a/comment/migrations/__pycache__/__init__.cpython-39.pyc b/comment/migrations/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index 3f0198a..0000000 Binary files a/comment/migrations/__pycache__/__init__.cpython-39.pyc and /dev/null differ diff --git a/home/__pycache__/__init__.cpython-39.pyc b/home/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index f277e10..0000000 Binary files a/home/__pycache__/__init__.cpython-39.pyc and /dev/null differ diff --git a/home/__pycache__/admin.cpython-39.pyc b/home/__pycache__/admin.cpython-39.pyc deleted file mode 100644 index 165275e..0000000 Binary files a/home/__pycache__/admin.cpython-39.pyc and /dev/null differ diff --git a/home/__pycache__/apps.cpython-39.pyc b/home/__pycache__/apps.cpython-39.pyc deleted file mode 100644 index b2497b5..0000000 Binary files a/home/__pycache__/apps.cpython-39.pyc and /dev/null differ diff --git a/home/__pycache__/models.cpython-39.pyc b/home/__pycache__/models.cpython-39.pyc deleted file mode 100644 index 02ea34b..0000000 Binary files a/home/__pycache__/models.cpython-39.pyc and /dev/null differ diff --git a/home/__pycache__/urls.cpython-39.pyc b/home/__pycache__/urls.cpython-39.pyc deleted file mode 100644 index 19caa6e..0000000 Binary files a/home/__pycache__/urls.cpython-39.pyc and /dev/null differ diff --git a/home/__pycache__/views.cpython-39.pyc b/home/__pycache__/views.cpython-39.pyc deleted file mode 100644 index 54e5b3b..0000000 Binary files a/home/__pycache__/views.cpython-39.pyc and /dev/null differ diff --git a/siteconfig/__pycache__/__init__.cpython-39.pyc b/siteconfig/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index 46beb22..0000000 Binary files a/siteconfig/__pycache__/__init__.cpython-39.pyc and /dev/null differ diff --git a/siteconfig/__pycache__/admin.cpython-39.pyc b/siteconfig/__pycache__/admin.cpython-39.pyc deleted file mode 100644 index 6cffe81..0000000 Binary files a/siteconfig/__pycache__/admin.cpython-39.pyc and /dev/null differ diff --git a/siteconfig/__pycache__/apps.cpython-39.pyc b/siteconfig/__pycache__/apps.cpython-39.pyc deleted file mode 100644 index d75b370..0000000 Binary files a/siteconfig/__pycache__/apps.cpython-39.pyc and /dev/null differ diff --git a/siteconfig/__pycache__/models.cpython-39.pyc b/siteconfig/__pycache__/models.cpython-39.pyc deleted file mode 100644 index 9029222..0000000 Binary files a/siteconfig/__pycache__/models.cpython-39.pyc and /dev/null differ diff --git a/siteconfig/migrations/0001_initial.py b/siteconfig/migrations/0001_initial.py deleted file mode 100644 index 3575e60..0000000 --- a/siteconfig/migrations/0001_initial.py +++ /dev/null @@ -1,29 +0,0 @@ -# Generated by Django 4.2.23 on 2025-06-23 03:17 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - initial = True - - dependencies = [ - ] - - operations = [ - migrations.CreateModel( - name='SiteConfig', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('site_name', models.CharField(max_length=255, verbose_name='网站名称')), - ('site_author_name', models.CharField(max_length=255, verbose_name='站长昵称')), - ('site_describe', models.CharField(max_length=255, verbose_name='站点描述')), - ('site_keyword', models.CharField(max_length=255, verbose_name='站点关键字')), - ], - options={ - 'verbose_name': '设置', - 'verbose_name_plural': '站点设置', - 'db_table': 'SiteConfig', - }, - ), - ] diff --git a/siteconfig/migrations/0002_siteconfig_site_author_qq.py b/siteconfig/migrations/0002_siteconfig_site_author_qq.py deleted file mode 100644 index a9f8343..0000000 --- a/siteconfig/migrations/0002_siteconfig_site_author_qq.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 4.2.23 on 2025-06-23 14:42 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('siteconfig', '0001_initial'), - ] - - operations = [ - migrations.AddField( - model_name='siteconfig', - name='site_author_qq', - field=models.CharField(default=0, max_length=255, verbose_name='站点qq'), - ), - ] diff --git a/siteconfig/migrations/0003_siteconfig_site_author_email_and_more.py b/siteconfig/migrations/0003_siteconfig_site_author_email_and_more.py deleted file mode 100644 index a85e2bd..0000000 --- a/siteconfig/migrations/0003_siteconfig_site_author_email_and_more.py +++ /dev/null @@ -1,23 +0,0 @@ -# Generated by Django 4.2.23 on 2025-06-23 15:15 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('siteconfig', '0002_siteconfig_site_author_qq'), - ] - - operations = [ - migrations.AddField( - model_name='siteconfig', - name='site_author_email', - field=models.CharField(default=0, max_length=255, verbose_name='站点长邮箱'), - ), - migrations.AlterField( - model_name='siteconfig', - name='site_author_qq', - field=models.CharField(default=0, max_length=255, verbose_name='站长qq'), - ), - ] diff --git a/siteconfig/migrations/0004_friendshiplink.py b/siteconfig/migrations/0004_friendshiplink.py deleted file mode 100644 index a7fa5aa..0000000 --- a/siteconfig/migrations/0004_friendshiplink.py +++ /dev/null @@ -1,26 +0,0 @@ -# Generated by Django 4.2.23 on 2025-06-23 15:32 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('siteconfig', '0003_siteconfig_site_author_email_and_more'), - ] - - operations = [ - migrations.CreateModel( - name='FriendshipLink', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('friendship_site_link', models.CharField(max_length=255, verbose_name='友链地址')), - ('friendship_site_name', models.CharField(max_length=255, verbose_name='友链名称')), - ], - options={ - 'verbose_name': '设置', - 'verbose_name_plural': '友链管理', - 'db_table': 'FriendshipLink', - }, - ), - ] diff --git a/siteconfig/migrations/0005_siteconfig_icp.py b/siteconfig/migrations/0005_siteconfig_icp.py deleted file mode 100644 index e146dec..0000000 --- a/siteconfig/migrations/0005_siteconfig_icp.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 4.2.23 on 2025-06-23 15:47 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('siteconfig', '0004_friendshiplink'), - ] - - operations = [ - migrations.AddField( - model_name='siteconfig', - name='icp', - field=models.CharField(default='', max_length=255, verbose_name='ICP备案号'), - ), - ] diff --git a/siteconfig/migrations/__init__.py b/siteconfig/migrations/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/siteconfig/migrations/__pycache__/0001_initial.cpython-39.pyc b/siteconfig/migrations/__pycache__/0001_initial.cpython-39.pyc deleted file mode 100644 index b54740c..0000000 Binary files a/siteconfig/migrations/__pycache__/0001_initial.cpython-39.pyc and /dev/null differ diff --git a/siteconfig/migrations/__pycache__/0002_siteconfig_site_author_qq.cpython-39.pyc b/siteconfig/migrations/__pycache__/0002_siteconfig_site_author_qq.cpython-39.pyc deleted file mode 100644 index 9630890..0000000 Binary files a/siteconfig/migrations/__pycache__/0002_siteconfig_site_author_qq.cpython-39.pyc and /dev/null differ diff --git a/siteconfig/migrations/__pycache__/0003_siteconfig_site_author_email_and_more.cpython-39.pyc b/siteconfig/migrations/__pycache__/0003_siteconfig_site_author_email_and_more.cpython-39.pyc deleted file mode 100644 index 13e4251..0000000 Binary files a/siteconfig/migrations/__pycache__/0003_siteconfig_site_author_email_and_more.cpython-39.pyc and /dev/null differ diff --git a/siteconfig/migrations/__pycache__/0004_friendshiplink.cpython-39.pyc b/siteconfig/migrations/__pycache__/0004_friendshiplink.cpython-39.pyc deleted file mode 100644 index 4a02892..0000000 Binary files a/siteconfig/migrations/__pycache__/0004_friendshiplink.cpython-39.pyc and /dev/null differ diff --git a/siteconfig/migrations/__pycache__/0005_siteconfig_icp.cpython-39.pyc b/siteconfig/migrations/__pycache__/0005_siteconfig_icp.cpython-39.pyc deleted file mode 100644 index c4966dd..0000000 Binary files a/siteconfig/migrations/__pycache__/0005_siteconfig_icp.cpython-39.pyc and /dev/null differ diff --git a/siteconfig/migrations/__pycache__/__init__.cpython-39.pyc b/siteconfig/migrations/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index 238b2d1..0000000 Binary files a/siteconfig/migrations/__pycache__/__init__.cpython-39.pyc and /dev/null differ