]> lifelog.hopto.org Git - LifeLog.git/commitdiff
Upd to defaults.
authorWill Budicm <redacted>
Sun, 25 Oct 2020 19:18:43 +0000 (06:18 +1100)
committerWill Budicm <redacted>
Sun, 25 Oct 2020 19:18:43 +0000 (06:18 +1100)
Current Development Check List.md
Installation_ProgresSQL.txt

index 4f15b184303672cd765e01236ce26d6b585152c6..f303080bc21735caa450d743e24984b9edf00ea0 100644 (file)
@@ -8,12 +8,12 @@
 
 * Static pages setting for the pages directory.
 * Search on multiwords should rank by encounter of words specified and display first. (That one is difficult)
-* Multi db driver type support. Earth stage requires same SQL related code to work on at least one more DBMS type other than SQLight.
-  * PostgreSQL is most likelly candidate as MySQL is not easy to install for the average user.
-  * Developing and adopting to MySQL or any other system is not prerogative, as it works well as it is with inbuild simplicity.
 * Provide markdown text functionality to html pages. For quick vanila plain documentation.
-* Auto collapse/epand on multi line logs by 0-none as default. Setting to 1 or more showes only that number of lines. (That one is difficult)
+* Auto collapse/expand on multi line logs by 0-none as default. Setting to 1 or more showes only that number of lines. (That one is difficult)
 * &#10004; Implement title bolding on logs using markdown, so tags can be avoided, for multiline logs.
+* &#10004; Multi db driver type support. Earth stage requires same SQL related code to work on at least one more DBMS type other than SQLight.
+  * PostgreSQL is most likelly candidate as MySQL is not easy to install for the average user.
+  * Developing and adopting to MySQL or any other system is not prerogative, as it works well as it is with inbuild simplicity.
 
 ### v.2.0 SUN RC2 Encountered
 
index 6f30ad53e9e8469413f38918f66c2079441eeac0..efe2f1263e39e5268ea5c6df513d1231eb02d341 100644 (file)
@@ -1,3 +1,24 @@
+# Notes
+
+ProgresSQL Server is a full database service solution (RDBSM). Handling interaction, like multipe enterprise schemas, databases, users and backups.
+These all are and can be handled outside the scope of the LifeLog application.
+However, it is not required or recomended to have a fully managed database system service, just to use for the LifeLog app.
+
+
+Modify the following anon driver property tag in dbLifeLog/main.cnf to specify:
+<<DBI_SOURCE<DBI:Pg:host=localhost>
+
+The alias is by default assumed the actual database name as well as the user.
+
+Modify the following anon property, to have the SQL Server provide multiple users as different aliases to loging into specifed single database.
+<<DBI_MULTI_USER_DB<0>
+to something like, to make logins now database users:
+<<DBI_MULTI_USER_DB<lifelog>
+Where 'lifelog' is the database.
+
+Hope all works for you, and happy logging!
+
+
 # Install ProgresSQL
 sudo mkdir /usr/include/postgresql
 sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ bionic-pgdg main" > \
@@ -26,23 +47,6 @@ dpkg -i libpq-dev_12.4-1.pgdg20.04+1_amd64.deb
 ###Than run again driver install
 sudo cpan DBD::Pg;
 
-# Notes
-
-ProgresSQL Server is an full database service solution. Handling interaction, like databases, users and backups.
-These all can be handled outside the scope of the LifeLog application.
-However, it is not required or recomended to have an fully managed database system, like this, 
-just to use the LifeLog app.
-
-Modify the following anon property tag in main.cnf to specify:
-<<DBI_DRV_PRFIX<DBI:Pg:host=localhost>
 
-The alias is by default assumed the database name, and the user.
-
-Modify the following anon property, to have multiple users as aliases loging into same database.
-<<DBI_MULTI_USER_DB<0>
-to something like:
-<<DBI_MULTI_USER_DB<lifelog>
-
-Hope all works for you, and happy logging!