+ Example commands
+
+ | Language | Commands |
+ | -----------| ---------|
+ | JavaScript | $ npm install
$ export DB_NAME=my-db DB_USER=my-user DB_PASSWORD=my-password
$ npm start
|
+ | TypeScript | $ npm install
$ npm run build
$ export DB_NAME=my-db DB_USER=my-user DB_PASSWORD=my-password
$ npm start
|
+ | Golang | $ export DB_NAME=my-db DB_USER=my-user DB_PASSWORD=my-password
$ go run *.go
or$ go build -o app
$ ./app
|
+ | Python | $ pip install -r requirements.txt
$ export DB_NAME=my-db DB_USER=my-user DB_PASSWORD=my-password
$ uvicorn app:app --port 3000
|
+
---
:bulb: **NOTE**
@@ -67,28 +82,37 @@ Generates the endpoints (or a whole app) from a mapping (SQL query -> URL)
* `DB_HOST` a database host (defaults to `localhost`)
---
+
1. Test that it works
+