create database sina default character set utf8mb4 collate utf8mb4_unicode_ci;
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释 | |
| deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free | |
| # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free | |
| deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free | |
| # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free | |
| deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free | |
| # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free | |
| deb https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free | |
| # deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM debian:buster | |
| # 时区设置 | |
| ARG TIMEZONE="Asia/Shanghai" | |
| # 如果遇到无法拉取 https 源的情况,请先使用 http 源并安装 | |
| #RUN apt-get update && \ | |
| # apt-get install apt-transport-https apt-utils ca-certificates | |
| # 复制源 |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <scheme name="Bluloco Dark" version="142" parent_scheme="Default"> | |
| <option name="FONT_SCALE" value="1.0" /> | |
| <metaInfo> | |
| <property name="created">2019-11-26T14:27:40</property> | |
| <property name="ide">PhpStorm</property> | |
| <property name="ideVersion">2019.3.0.0</property> | |
| <property name="modified">2019-11-26T14:27:45</property> | |
| <property name="originalScheme">Bluloco Dark</property> | |
| </metaInfo> | |
| <option name="LINE_SPACING" value="1.6" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=MySQL | |
| SourcePath=/etc/init.d/mysqld | |
| Before=shutdown.target | |
| [Service] | |
| User=mysql | |
| Type=forking | |
| ExecStart=/etc/init.d/mysqld start | |
| ExecStop=/etc/init.d/mysqld stop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [core] | |
| preloadindex = true | |
| fscache = true | |
| [gc] | |
| auto = 256 | |
| [color] | |
| status = auto | |
| diff = auto | |
| branch = auto | |
| interactive = auto |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [my] | |
| text=e1e1e1 | |
| cyan(bold)=3979bc | |
| text(bold)=ffffff | |
| magenta=944d95 | |
| green=24b089 | |
| green(bold)=35bb9a | |
| background=3d4857 | |
| cyan=1f9ee7 | |
| red(bold)=fa8c8f |