代码之家  ›  专栏  ›  技术社区  ›  unloco

Faunadb dev:固定密钥

  •  0
  • unloco  · 技术社区  · 4 年前

    #!/usr/bin/env bash
    
    docker pull fauna/faunadb
    docker container stop faunadb || true && docker container rm faunadb || true
    docker run --name faunadb -d \
            --health-cmd="faunadb-admin status" --health-interval=5s \
            -p 8443:8443 \
            -p 8084:8084 \
            fauna/faunadb
    ./docker/wait-for-healthy.sh faunadb 30
    
    echo n | fauna add-endpoint http://localhost:8443/ --alias localhost --key secret
    fauna create-database generator_dev --endpoint=localhost
    fauna create-key generator_dev --endpoint=localhost
    
    curl -u secret: http://localhost:8084/import --data-binary "@functions/schemas/schema.graphql"
    

    我希望此命令始终返回相同的密钥

    fauna create-key generator_dev --endpoint=localhost
    

    有可能吗? 钥匙

    任何想法都很感激

    0 回复  |  直到 4 年前
    推荐文章