We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87b86a3 commit 4e745a5Copy full SHA for 4e745a5
README.md
@@ -1,4 +1,21 @@
1
2
-# SQL Server DB Task Test App
+# SQL Server Addapter Smoke Test
3
+
4
+Trying to make sure things work.
5
6
7
+### Setup
8
9
+Ensure the `sa` password is exported to the env.
10
11
+```shell
12
+$ export SA_PASSWORD=...
13
+```
14
15
+Now create the DB and setup the app.
16
17
18
+$ bundle install
19
+$ ./bin/rake db:setup
20
21
-That is all.
config/database.yml
@@ -1,11 +1,10 @@
default: &default
adapter: sqlserver
- host: ss2014
- username: <%= ENV['SQLSERVER_USER'] %>
- password: <%= ENV['SQLSERVER_PASS'] %>
- pool: 5
- timeout: 5000
+ encoding: utf8
+ username: sa
+ password: <%= ENV['SA_PASSWORD'] %>
+ host: localhost
development:
<<: *default
0 commit comments