no message
This commit is contained in:
parent
8d897d564d
commit
b8b15fee0f
@ -46,7 +46,7 @@ CREATE TABLE `article` (
|
|||||||
`updated_at` datetime DEFAULT NULL,
|
`updated_at` datetime DEFAULT NULL,
|
||||||
`created_at` datetime DEFAULT NULL,
|
`created_at` datetime DEFAULT NULL,
|
||||||
PRIMARY KEY (`id`)
|
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 */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -159,6 +159,22 @@ CREATE TABLE `jobs` (
|
|||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!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`
|
-- Table structure for table `migrations`
|
||||||
--
|
--
|
||||||
@ -254,4 +270,4 @@ CREATE TABLE `users` (
|
|||||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||||
/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */;
|
/*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
|
||||||
|
|||||||
@ -9,15 +9,17 @@
|
|||||||
apt update
|
apt update
|
||||||
alias ll='ls -l'
|
alias ll='ls -l'
|
||||||
apt install vim
|
apt install vim
|
||||||
|
apt install git
|
||||||
|
|
||||||
ssh目录
|
ssh目录
|
||||||
cd /var/www
|
cd /var/www
|
||||||
mkdir .ssh
|
mkdir .ssh
|
||||||
|
cd .ssh
|
||||||
|
|
||||||
ssh安装
|
ssh安装
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install openssh-client
|
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
|
生成地址写 /var/www/.ssh/id_rsa_邮箱不要后缀 dahuaidan123123
|
||||||
|
|
||||||
ssh权限
|
ssh权限
|
||||||
@ -33,9 +35,8 @@ www创建
|
|||||||
cd wwwroot
|
cd wwwroot
|
||||||
|
|
||||||
项目文件
|
项目文件
|
||||||
apt install git
|
|
||||||
git clone https://gitea.diaodu.us/tom/github
|
git clone https://gitea.diaodu.us/tom/github
|
||||||
mv github github-x.diaodu.us
|
mv github github-sg01.diaodu.us
|
||||||
cd进去
|
cd进去
|
||||||
mkdir github
|
mkdir github
|
||||||
chmod -R 755 *
|
chmod -R 755 *
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user