https://github.com/mr-addict/punch
技术部值班笔记
https://github.com/mr-addict/punch
bcrypt express mysql nodejs sql
Last synced: 11 months ago
JSON representation
技术部值班笔记
- Host: GitHub
- URL: https://github.com/mr-addict/punch
- Owner: MR-Addict
- Archived: true
- Created: 2022-08-11T02:33:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-26T02:17:35.000Z (almost 3 years ago)
- Last Synced: 2025-03-16T21:48:47.117Z (about 1 year ago)
- Topics: bcrypt, express, mysql, nodejs, sql
- Language: JavaScript
- Homepage: https://punch.mraddict.top
- Size: 425 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 技术部值班笔记 
## 1. 预览

## 2. 准备数据库
### 2.1 创建新数据库
创建新的提交数据库,名称为`punch`:
```sql
CREATE DATABASE punch;
```
#### 2.1.1 创建提交 Table
创建新的 Table,名称为`punch`:
```sql
USE punch;
CREATE TABLE `punch`(
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
`group` VARCHAR(10) NOT NULL,
`name` VARCHAR(10) NOT NULL,
`date` VARCHAR(10) DEFAULT (DATE_FORMAT(CURRENT_DATE, '%Y/%m/%d')) NOT NULL,
`notes` VARCHAR(500) NOT NULL
);
```
#### 2.1.2 创建管理员 Table
创建新的 Table,名称为`admin`:
```sql
USE punch;
CREATE TABLE `admin`(
`id` int NOT NULL AUTO_INCREMENT PRIMARY KEY,
`username` VARCHAR(20) NOT NULL,
`password` VARCHAR(100) NOT NULL
);
```
### 2.2 创建新用户
#### 2.2.1 punch_insert 用户
创建新的 MySQL 用户,用户名为`punch_insert`,密码为`password`:
```sql
CREATE USER 'punch_insert'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
```
授予`punch_insert`用户权限:
```sql
USE punch; GRANT INSERT, UPDATE, SELECT ON punch TO 'punch_insert'@'localhost' WITH GRANT OPTION;
```
#### 2.2.2 punch_select 用户
创建新的 MySQL 用户,用户名为`punch_select`,密码为`password`:
```sql
CREATE USER 'punch_select'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
```
授予`punch_select`用户权限:
```sql
USE punch; GRANT SELECT ON punch TO 'punch_select'@'localhost' WITH GRANT OPTION;
```
```sql
USE punch; GRANT SELECT ON admin TO 'punch_select'@'localhost' WITH GRANT OPTION;
```
#### 2.2.3 重置用户权限缓存
重置用户权限缓存:
```sql
FLUSH PRIVILEGES;
```
## 3. 启动服务器
克隆本文档:
```bash
git clone https://github.com/MR-Addict/punch.git
```
启动 docker 容器:
```bash
docker-compose up -d
```
## 4. 后台管理
后台账号请联系部长或者组长。
> 后台管理项目地址:
>
> - [https://github.com/MR-Addict/punch-frontend](https://github.com/MR-Addict/punch-frontend)