Compare commits
3 Commits
391e6bf09a
...
c9d87ffccb
Author | SHA1 | Date | |
---|---|---|---|
c9d87ffccb | |||
39dc65ab9c | |||
716c18e5ba |
@ -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
|
||||
|
@ -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);
|
||||
|
@ -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;
|
Loading…
Reference in New Issue
Block a user