GET /:id/sales- query based on #sold_at
POST /api/stock_items/serialized/:serialized_id/sold
| diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h | |
| index f52ae11b04..aa039af292 100644 | |
| --- a/Marlin/Configuration.h | |
| +++ b/Marlin/Configuration.h | |
| @@ -69,7 +69,7 @@ | |
| // @section info | |
| // Author info of this build printed to the host during boot and M115 | |
| -#define STRING_CONFIG_H_AUTHOR "(BigTreeTech, SKR-mini-E3-V3.0)" // Who made the changes. | |
| +#define STRING_CONFIG_H_AUTHOR "(JD Wolk)" // Who made the changes. |
| module LogOnCall | |
| def call | |
| puts "Logging #{self.class.name}.call" | |
| super | |
| end | |
| end | |
| class BaseThing | |
| ### MAGIC HAPPENS HERE | |
| def self.inherited(subclass) |
| ## EB cli | |
| ### Init | |
| (Shouldn't be necessary now that things are set up, but good to know:) | |
| `$ aws configure` | |
| then | |
| `$ eb init` |
| docker ps -a | |
| Show all docker containers, even runs not running | |
| docker build -f <DOCKERFILE> -t <????NOT REALLY THE NAME???> <DIR> | |
| builds whatever's in <DIR> using the <DOCKERFILE> to the <???NOT REALLY THE NAME???> | |
| docker run <NAME> | |
| Runs the container named <NAME>. Pulls down the required image first if it doesn't exist | |
| docker run -d -t -p <IP>:<PORT>:<MAPPED-PORT> --name <NAME> <???NOT REALLY THE NAME???>k |
| ( | |
| sleep 1 | |
| curl --request POST \ | |
| --url http://localhost:4040/api/tunnels \ | |
| --header 'content-type: application/json' \ | |
| --data '{ | |
| "addr": 8081, | |
| "proto": "http", | |
| "name": "voyage-js", | |
| "subdomain": "jdwolk-voyage-js" |
The situation:
| export AWS_ACCESS_KEY_ID=<IAM user access key id> | |
| export AWS_SECRET_ACCESS_KEY=<IAM user secret access key> |