Compare commits
3 Commits
391e6bf09a
...
c9d87ffccb
Author | SHA1 | Date | |
---|---|---|---|
c9d87ffccb | |||
39dc65ab9c | |||
716c18e5ba |
@ -1,13 +1,14 @@
|
|||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
* git clone (to //opt for verbatim use of the .service file)
|
* git clone (to //opt for verbatim use of the .service file)
|
||||||
* npm install
|
* `npm install`
|
||||||
* create certs (`./create_certs.sh`)
|
* create certs: `chmod 700 create_certs.sh` , `./create_certs.sh`
|
||||||
* populate .env from template for database creds and listening port for API, and working directory
|
* 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)
|
* copy .service file to //etc/systemd/system/ (adjust user/working direct if needed)
|
||||||
* `sudo systemctl enable forecast_api.service`
|
* `sudo systemctl enable forecast_api.service`
|
||||||
|
|
||||||
## Initial Forecast
|
## Initial Forecast
|
||||||
|
|
||||||
* all SQL depends on unchanged core sales matrix table schema
|
* all SQL depends on unchanged core sales matrix table schema
|
||||||
* build/build_baseline.sql
|
|
||||||
|
@ -171,7 +171,7 @@ FROM
|
|||||||
--LIMIT 100
|
--LIMIT 100
|
||||||
) WITH DATA;
|
) 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);
|
--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);
|
--ALTER TABLE rlarp.osm_pool ADD CONSTRAINT logfk FOREIGN KEY (logid) REFERENCES rlarp.osm_log(id);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#$PG -f ./build_stage.sql;
|
#$PG -f ./build_stage.sql;
|
||||||
$PG -f ./build_baseline.sql;
|
$PG -f ./build_rolling.sql;
|
||||||
$PG -f ./snap_itemm.sql;
|
$PG -f ./snap_itemm.sql;
|
||||||
$PG -f ./snap_cost_current.sql;
|
$PG -f ./snap_cost_current.sql;
|
||||||
$PG -f ./snap_customer.sql;
|
$PG -f ./snap_customer.sql;
|
Loading…
Reference in New Issue
Block a user