EESAST Hasura migrations and metadata files
- Node.js npm / yarn: Use hasura-cli to manage
- Docker Get & Install
- git
- any terminal or vscode
使用 EESAST 服务器上的 hasura-dev
时,需在本地的 .env
中添加相应的 HASURA_GRAPHQL_ENDPOINT
和 HASURA_GRAPHQL_ADMIN_SECRET
其他环境变量含义见hasura-cli config-reference
围绕 Hasura CLI 展开,参看文档
使用 Hasura CLI 启动的 console 页面会记录所有更改,请务必不要使用 docker 自带的 console(
docker-compose.yaml
中已禁用该功能)
将仓库中的 migrations 和 metadata 应用在本地 docker 中运行的 Hasura 和 postgres 上
第一次部署 docker 后执行此指令可能会有报错 FatalError: function \"set_current_timestamp_s with same argument types"
,请先使用 console
,在其中的 Data-SQL
处执行 DROP FUNCTION public.set_current_timestamp_updated_at;
。此方案可能不一定可以解决问题,参看 hasura/graphql-engine:issues#3633
打开 Hasura console
用作执行一般的 hasura-cli 指令,也可以替代另外几个
yarn hasura [command] => hasura [command]
"hasura migrate squash" 的替代,用来将多次改动合并为“一次”
hasura migrate squash --name "<feature-name>" --from <start-migration-version>
# note down the version
# mark the squashed migration as applied on this server
hasura migrate apply --version "<squash-migration-version>" --skip-execution