no message

This commit is contained in:
hellcat 2025-07-20 13:23:49 +08:00
parent 8d897d564d
commit b8b15fee0f
2 changed files with 22 additions and 5 deletions

View File

@ -46,7 +46,7 @@ CREATE TABLE `article` (
`updated_at` datetime DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
@ -159,6 +159,22 @@ CREATE TABLE `jobs` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `me`
--
DROP TABLE IF EXISTS `me`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `me` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`class` varchar(11) DEFAULT NULL,
`rag` text DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unique_class` (`class`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `migrations`
--
@ -254,4 +270,4 @@ CREATE TABLE `users` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */;
-- Dump completed on 2025-07-17 20:28:03
-- Dump completed on 2025-07-20 13:22:51

View File

@ -9,15 +9,17 @@
apt update
alias ll='ls -l'
apt install vim
apt install git
ssh目录
cd /var/www
mkdir .ssh
cd .ssh
ssh安装
sudo apt update
sudo apt install openssh-client
ssh-keygen -t rsa -b 4096 -C "github-3@gemsub.online"
ssh-keygen -t rsa -b 4096 -C "github-sg01@gemsub.online"
生成地址写 /var/www/.ssh/id_rsa_邮箱不要后缀 dahuaidan123123
ssh权限
@ -33,9 +35,8 @@ www创建
cd wwwroot
项目文件
apt install git
git clone https://gitea.diaodu.us/tom/github
mv github github-x.diaodu.us
mv github github-sg01.diaodu.us
cd进去
mkdir github
chmod -R 755 *