Vojtech Vitek (golang.cz)
Vojtech Vitek (golang.cz)
We keep the goose table in tact. Before: ``` 0001-add-table-1.sql 0002-update-column.sql 0003-add-table-2.sql 0004-alter-table.sql 0005-add-index.sql ``` `pg_dump db --schema-only | grep -v -e '^--' -e '^COMMENT ON' -e '^REVOKE' -e '^GRANT'...
I see, so `go fix` updates the number for you. Maybe try this instead: ```diff - 00001_squashed.sql - 00002_f.sql + 00006_squashed.sql + 00007_f.sql ``` and keep incrementing the new migrations
@tcherokee this would still compile Svelte app with the value of the `${process.env.CDN_URL}`, if I understand correctly. What I'm asking for is to let Svelte read the value from env...
We already have `int64` primitive type in webrpc and it doesn't fit JavaScript's `number`. It can produce bugs.. Should we change it to `BigInt()` in JS? If we're to add...
Interesting question. I think I'm looking for 16, since I'd need to `goose down` before 16 (e.g. 13) to be able to apply the missing 14,15.
Images can be represented by base64 encoded URL data scheme, ie. `data:image/png;base64,{BASE_64_DATA}`. Were you thinking about some special webrpc data type that would do the binary-base64 conversion automatically?
Implemented since https://github.com/webrpc/webrpc/releases/tag/v0.17.0. Example: https://github.com/webrpc/webrpc/tree/master/_examples/golang-sse
Released in [v0.12.0](https://github.com/webrpc/webrpc/releases/tag/v0.12.0)
Dart support has been implemented by @austinmilt at https://github.com/webrpc/gen-dart/pull/3 🎉 FYI @g5becks @ansarizafar
There's more documentation now at https://github.com/webrpc/gen-openapi#generate-openapi-3x-yaml-file. You can build a static HTML documentation or use Swagger UI / Editor.