Skip to content

Commit

Permalink
Update install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
香風智乃 authored and 香風智乃 committed May 1, 2019
1 parent 10231f9 commit ae201da
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions InstallingApacheAndUbuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,16 @@ nano ConnectionConfig.cs
```

You should only modify the following as seen below. You should only need to add the generated password to mysqlpassword constant.

Note: Supported DBMS engines are mysql or postgres (lower case only).
```
// Specify database settings
// Note: You should execute setupschema.sql before setting up this script.
private const String mysqlserver = "localhost";
private const String mysqldatabase = "hato";
private const String mysqlusername = "hato";
private const String mysqlpassword = "";
"dbsettings" : {
"dbengine" : "mysql",
"dbhost" : "localhost",
"dbname" : "hato",
"dbuser" : "hato",
"dbpassword" : ""
}
```

## 4. Publish the app
Expand Down

0 comments on commit ae201da

Please sign in to comment.