Compare commits

...

3 Commits

3 changed files with 7 additions and 6 deletions

View File

@ -1,13 +1,14 @@
## Setup
* git clone (to //opt for verbatim use of the .service file)
* npm install
* create certs (`./create_certs.sh`)
* populate .env from template for database creds and listening port for API, and working directory
* `npm install`
* create certs: `chmod 700 create_certs.sh` , `./create_certs.sh`
* create .env from template .env.sample sepcifiying database creds and listening port for API, and working directory
* `node index.js`
to setup as service
* copy .service file to //etc/systemd/system/ (adjust user/working direct if needed)
* `sudo systemctl enable forecast_api.service`
## Initial Forecast
* all SQL depends on unchanged core sales matrix table schema
* build/build_baseline.sql

View File

@ -171,7 +171,7 @@ FROM
--LIMIT 100
) WITH DATA;
--INSERT INTO rlarp.osm_pool SELECT * FROM rlarp.osm_pool_stage;
INSERT INTO rlarp.osm_pool SELECT * FROM rlarp.osm_pool_stage;
--CREATE INDEX osm_qr ON rlarp.osm_pool(quota_rep_descr, bill_cust_descr, ship_cust_descr);
--ALTER TABLE rlarp.osm_pool ADD CONSTRAINT logfk FOREIGN KEY (logid) REFERENCES rlarp.osm_log(id);

View File

@ -1,6 +1,6 @@
#!/bin/bash
#$PG -f ./build_stage.sql;
$PG -f ./build_baseline.sql;
$PG -f ./build_rolling.sql;
$PG -f ./snap_itemm.sql;
$PG -f ./snap_cost_current.sql;
$PG -f ./snap_customer.sql;