@deep-foundation/deepcase-app
v0.1.0-beta.41
Published
[SDK](https://github.com/deep-foundation/sdk) based application, with configured [@deep-foundation/deepcase](https://github.com/deep-foundation/deepcase).
Downloads
230
Maintainers
Keywords
Readme
Deep.Case App
SDK based application, with configured @deep-foundation/deepcase.
envs
export MIGRATIONS_HASURA_PATH=localhost:8080;
export MIGRATIONS_HASURA_SSL=0;
export MIGRATIONS_HASURA_SECRET=myadminsecretkey;
export NEXT_PUBLIC_DEEPLINKS_SERVER=http://localhost:3007;
export NEXT_PUBLIC_GQL_PATH=localhost:3006/gql;
export NEXT_PUBLIC_GQL_SSL=0;
export NEXT_PUBLIC_ENGINES=1;
export JWT_SECRET=<?>;
For maintainers
Please publish new version to git (npm automatically in github actions) with this command:
npm run git-publish
Diagnostics
Logs
Get container logs to console:
docker logs deep-case
Get container logs to file:
Sometimes console cannot output the full logs so it might be helpful to store the entire container's logs as file. It can be done like this:
docker logs deep-case > deep-case.log.txt
Get live logs:
docker logs -f deep-case
Enter the sh from inside the docker container:
docker exec -it deep-case sh