Skip to content

Commit 26c1036

Browse files
committed
refactor: use correct name
1 parent 480b77a commit 26c1036

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,14 @@ sync-from-veekun: pull pull-veekun # Copy data from ../pokedex to this reposito
8989
sync-to-veekun: pull pull-veekun # Copy data from this repository to ../pokedex
9090
cp -a ./data/v2/csv/. ${veekun_pokedex_repository}/pokedex/data/csv
9191

92-
read-env-file: # Exports ./.env into shell environment variables
93-
export `egrep -v '^#' .env | xargs`
92+
# read-env-file: # Exports ./.env into shell environment variables
93+
# export `egrep -v '^#' .env | xargs`
9494

9595
hasura-export: # Export Hasura configuration
96-
hasura md export --project hasura --admin-secret ${HASURA_GRAPHQL_ADMIN_SECRET}
96+
hasura md export --project graphql --admin-secret ${HASURA_GRAPHQL_ADMIN_SECRET}
9797

9898
hasura-apply: # Apply local Hasura configuration
99-
hasura md apply --project hasura --admin-secret ${HASURA_GRAPHQL_ADMIN_SECRET}
99+
hasura md apply --project graphql --admin-secret ${HASURA_GRAPHQL_ADMIN_SECRET}
100100

101101
hasura-get-anon-schema: # Dumps GraphQL schema
102-
gq http://localhost:8080/v1/graphql --introspect > hasura/schema.graphql
102+
gq http://localhost:8080/v1/graphql --introspect > graphql/schema.graphql

0 commit comments

Comments
 (0)