summaryrefslogtreecommitdiffstats
path: root/integrations
diff options
context:
space:
mode:
authorqwerty287 <80460567+qwerty287@users.noreply.github.com>2021-12-24 04:56:57 +0100
committerGitHub <noreply@github.com>2021-12-24 11:56:57 +0800
commit5754080eb9b13e3446443bc7c17cd53d160dfdf2 (patch)
tree1322ff6aba97c24905380def413af01e67d2d4f7 /integrations
parenta5df7ba6bf57c764b1c5e4c67dbbdf5b115765c9 (diff)
downloadgitea-5754080eb9b13e3446443bc7c17cd53d160dfdf2.tar.gz
gitea-5754080eb9b13e3446443bc7c17cd53d160dfdf2.zip
Fix various typos of software names (#18083)
* `git` -> `Git` * `Github` and `github` -> `GitHub` * `crowdin` -> `Crowdin` * `git-lfs` -> `Git LFS` * `githooks`, `git hooks`, `git-hooks` -> `Git Hooks` * `discord` -> `Discord` * `2fa` -> `2FA` * `gitlab` and `Gitlab` -> `GitLab` * `web hook` -> `webhook` * `linux` -> `Linux` * `sqlite` -> `SQLite` * `MYSQL` and `mysql` -> `MySQL` * rename refs to `master` branch -> `main` * Fix English grammar
Diffstat (limited to 'integrations')
-rw-r--r--integrations/README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/integrations/README.md b/integrations/README.md
index 0b91a7d254..40cdcde474 100644
--- a/integrations/README.md
+++ b/integrations/README.md
@@ -24,8 +24,8 @@ Start tests
make test-sqlite
```
-## Run mysql integrations tests
-Setup a mysql database inside docker
+## Run MySQL integrations tests
+Setup a MySQL database inside docker
```
docker run -e "MYSQL_DATABASE=test" -e "MYSQL_ALLOW_EMPTY_PASSWORD=yes" -p 3306:3306 --rm --name mysql mysql:latest #(just ctrl-c to stop db and clean the container)
docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" --rm --name elasticsearch elasticsearch:7.6.0 #(in a second terminal, just ctrl-c to stop db and clean the container)
@@ -59,13 +59,13 @@ TEST_MSSQL_HOST=localhost:1433 TEST_MSSQL_DBNAME=gitea_test TEST_MSSQL_USERNAME=
Example command to run GPG test:
-For sqlite:
+For SQLite:
```
make test-sqlite#GPG
```
-For other databases(replace MSSQL to MYSQL, MYSQL8, PGSQL):
+For other databases(replace `mssql` to `mysql`, `mysql8` or `pgsql`):
```
TEST_MSSQL_HOST=localhost:1433 TEST_MSSQL_DBNAME=test TEST_MSSQL_USERNAME=sa TEST_MSSQL_PASSWORD=MwantsaSecurePassword1 make test-mssql#GPG