Skip to content

Commit 6160e24

Browse files
rakeshkky0x777
authored andcommitted
rename 'raven' to 'graphql-engine' in help text, closes #87
1 parent 4270529 commit 6160e24

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

server/src-exec/Main.hs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ parseRavenMode = subparser
5656
( command "serve" (info (helper <*> serveOptsParser)
5757
( progDesc "Start the HTTP api server" ))
5858
<> command "export" (info (pure ROExport)
59-
( progDesc "Export raven's schema to stdout" ))
59+
( progDesc "Export graphql-engine's schema to stdout" ))
6060
<> command "clean" (info (pure ROClean)
61-
( progDesc "Clean raven's metadata to start afresh" ))
61+
( progDesc "Clean graphql-engine's metadata to start afresh" ))
6262
<> command "execute" (info (pure ROExecute)
6363
( progDesc "Execute a query" ))
6464
)
@@ -80,7 +80,7 @@ parseArgs = execParser opts
8080
optParser = RavenOptions <$> parseRawConnInfo <*> parseRavenMode
8181
opts = info (helper <*> optParser)
8282
( fullDesc <>
83-
header "raven - Hasura's datastore")
83+
header "Hasura's graphql-engine - Exposes Postgres over GraphQL")
8484

8585
printJSON :: (A.ToJSON a) => a -> IO ()
8686
printJSON = BLC.putStrLn . A.encode
@@ -146,7 +146,7 @@ main = withStdoutLogger ravenLogGen $ \rlogger -> do
146146
res <- runTx ci $ migrateCatalog currentTime
147147
either ((>> exitFailure) . printJSON) putStrLn res
148148

149-
cleanSuccess = putStrLn "successfully cleaned raven related data"
149+
cleanSuccess = putStrLn "successfully cleaned graphql-engine related data"
150150

151151
printConnInfo ci =
152152
putStrLn $

0 commit comments

Comments
 (0)