List of commits:
Subject Hash Author Date (UTC)
More information about how to use the software. Not much, yet. Enough to get started, I think. 393fce58bbcfeaee947cb2b0e17d81d16da49612 Luigi Bai 2020-09-08 22:31:02
Don't write to console.err if there's a rejectionFunction. 630b8ec76a21733a6bb93d98ca54563aadd61da4 Luigi Bai 2020-09-08 22:30:29
Remove trailing comma on all rows. e7605fa152a841eefc7fcab6bb7cfd64daf28b17 Luigi Bai 2020-09-07 22:43:36
Allow passing in query for Case.sqlAllCases() 346862c0720ef9054426048cc95caa8f6b068868 Luigi Bai 2020-09-07 22:43:09
This version works in MS-SQL. 4e3f33f464173c91c3f4ac4b6acb0235ed2d6720 Luigi Bai 2020-09-07 19:11:54
Add headers. 4da1ccbdb2e3e852050de3460bc9ac9ba061ed7a Luigi Bai 2020-09-07 16:28:52
loadDockets now works to local. 96ba8f7419f63be6612fe1efd3e24d5d30eaf20a Luigi Bai 2020-09-06 20:59:06
Fix for new column names. 5791d77e19585c494e51c6062ab45440e5af0903 Luigi Bai 2020-09-06 20:44:50
Add headers 32cb7264c06b28dc0404b715f24fd2d82b66633b Luigi Bai 2020-09-06 20:44:29
Have a working version of xfer - now transfers data to MS SQL Server from SQLITE3. 428e493bcc5b7f718a741db046d08905f47d0f1c Luigi Bai 2020-09-05 22:11:55
Stupid MS SQL Server assumes case insensitive collation for text/char columns. Who does that? 2700846d8c1233d27664fb74b582293ddb8cb32a Luigi Bai 2020-09-05 21:11:17
Fixed MS schema - 4096 too big for varchar. ca3870f7e244d83e58d74c7f231baacbc19ba8fa Luigi Bai 2020-09-04 17:04:05
Remove interstitial console.log 19481f6692d9f93e75aa173bee9716261ef54db0 Luigi Bai 2020-09-04 12:07:33
Added license/copyright info. Added shim for Promise. Rewrote xferData with await and shim. 3930998d32fb2a19239e63b1b07bf1804c7ea46e Luigi Bai 2020-09-04 12:04:32
Fixed a typo. Ugh. 64718362e042d4a987d3161f999de087edb7bc8a Luigi Bai 2020-09-04 03:59:37
Must have an example of the creds.js file to learn from. 13d0e75c21bf8194c53e148e37cc6f85d8152de3 Luigi Bai 2020-09-04 03:59:16
Transfer local data to cloud based MS SQL-Server database. 8035b6dac5ce05ced62474409ab46ca490a6db4a Luigi Bai 2020-09-04 03:50:32
Learned that package-lock.json should also be committed. 20222232bd2e5388b76d3330e6f695b5aacfe393 Luigi Bai 2020-09-03 11:04:05
Fixed SPDX license expression. c894ba842750ff63035c850095ac93399495f4bc Luigi Bai 2020-09-03 11:01:27
Updated README. Added .gitignore, node/npm package.json, and the schema definitions for the data stores. a5baa30d1360514e217250737abf3a4518ab6a65 Luigi Bai 2020-09-02 17:35:09
Commit 393fce58bbcfeaee947cb2b0e17d81d16da49612 - More information about how to use the software. Not much, yet. Enough to get started, I think.
Author: Luigi Bai
Author date (UTC): 2020-09-08 22:31
Committer name: Luigi Bai
Committer date (UTC): 2020-09-08 22:31
Parent(s): 630b8ec76a21733a6bb93d98ca54563aadd61da4
Signing key:
Tree: c1b6517b2009dced71a864785e894a3c953c296d
File Lines added Lines deleted
README.md 9 2
File README.md changed (mode: 100644) (index 4f72a1e..22bcce7)
1 1 # datajams-evictions # datajams-evictions
2 2
3 3 ## Software Needed ## Software Needed
4 ### [node.js:](https://nodejs.org). This is known to run in version 10.x.
5 ### **npm** : should be included in the download above.
4 * [node.js:](https://nodejs.org). This is known to run in version 10.x. Higher versions may work.
5 * **npm** : should be included in the download above.
6 6
7 7 Local data storage is in [SQLITE3](https://sqlite.org). You should only need to download software if you want to independently access the database. Local data storage is in [SQLITE3](https://sqlite.org). You should only need to download software if you want to independently access the database.
8 8
9 9 Remote data storage is (currently) in MS SQL Server on Azure. Remote data storage is (currently) in MS SQL Server on Azure.
10 10
11 ## How to Use
12 1. Download node.js as above.
13 1. run "npm install" to pull in the dependencies.
14 1. initialize your local SQLITE3 database
15 1. if you have install SQLITE3 as above: "sqlite3 eviction-data.sq3 < schema.sqlite.sql"
16 1. otherwise, someone could make a script like "node initSqliteDB"
17 1. run, e.g, "node loadDockets" to load in docket information to a local SQLITE3 database
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/datajams-lbai/datajams-evictions

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/datajams-lbai/datajams-evictions

Clone this repository using git:
git clone git://git.rocketgit.com/user/datajams-lbai/datajams-evictions

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main