You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Author:**[Matt Wang](https://github.com/hooopo) (Engineer at PingCAP, moderator of Ruby-China community)
12
12
13
-
**Editor:**[Fendy Feng](https://github.com/septemberfd), Tom Dewan
13
+
**Editors:**[Fendy Feng](https://github.com/septemberfd), Tom Dewan
14
14
15
15

16
16
17
-
If you are a Ruby on Rails developer, I think you'll really enjoy this article. It aims to help you get started with [TiDB](https://github.com/pingcap/tidb), an open-source NewSQL database, and use it to power up your Rails applications.
17
+
If you are a Ruby on Rails developer, I think you'll really enjoy this article. It aims to help you get started with [TiDB](https://docs.pingcap.com/tidb/stable), an open-source NewSQL database, and use it to power up your Rails applications.
18
18
19
19
## Use TiDB to build up your Ruby on Rails applications
20
20
@@ -34,66 +34,66 @@ Deploy a TiDB cluster on your local machine.
34
34
35
35
1. Install TiUP.
36
36
37
-
TiDB provides a smooth deployment experience using [TiUP](https://docs.pingcap.com/tidb/stable/tiup-overview), a package manager for you to manage different cluster components easily in the TiDB ecosystem.
37
+
TiDB provides a smooth deployment experience using [TiUP](https://docs.pingcap.com/tidb/stable/tiup-overview), a package manager for you to manage different cluster components easily in the TiDB ecosystem.
38
38
39
-
```shell
40
-
$ curl --proto '=https' --tlsv1.2 -sSf https://tiup-mirrors.pingcap.com/install.sh | sh
41
-
```
39
+
```shell
40
+
$ curl --proto '=https' --tlsv1.2 -sSf https://tiup-mirrors.pingcap.com/install.sh | sh
41
+
```
42
42
43
43
2. Start TiDB playground.
44
44
45
-
Start a TiDB nightly instance by running the `tiup playground` command:
45
+
Start a TiDB nightly instance by running the `tiup playground` command:
46
46
47
-
```shell
48
-
$ tiup playground nightly
49
-
```
47
+
```shell
48
+
$ tiup playground nightly
49
+
```
50
50
51
51
3. Connect to the TiDB instance in a similar way as you connect to MySQL.
52
52
53
-
```
54
-
mysql --host 127.0.0.1 --port 4000 -u root -p
55
-
```
53
+
```
54
+
mysql --host 127.0.0.1 --port 4000 -u root -p
55
+
```
56
56
57
57
### Step 2: Initialize the Rails application
58
58
59
59
1. Make sure that you have Ruby and Rails installed, and initiate a Rails app named `tidb-rails`; also be sure to set the database as `mysql` because TiDB speaks the MySQL protocol.
60
60
61
-
```
62
-
$ ruby -v
63
-
ruby 2.7.0
61
+
```
62
+
$ ruby -v
63
+
ruby 2.7.0
64
64
65
-
$ rails -v
66
-
Rails 6.1.4
65
+
$ rails -v
66
+
Rails 6.1.4
67
67
68
-
$ rails new tidb-rails --database=mysql --api
69
-
```
68
+
$ rails new tidb-rails --database=mysql --api
69
+
```
70
70
71
71
2. Add [activerecord-tidb-adapter](https://github.com/pingcap/activerecord-tidb-adapter) to Gemfile. Activerecord-tidb-adapter allows you to use TiDB as a backend for ActiveRecord and Rails apps.
0 commit comments