├── .env.default ├── .gitignore ├── ChangeLog.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── app └── Main.hs ├── db ├── migrations │ ├── 20200104122356_create_trigger.sql │ └── 20200112080004_create_users.sql └── schema.sql ├── docker-compose.yml ├── entrypoint.sh ├── graphiql.html ├── images └── playground.png ├── package.yaml ├── schema.graphql ├── src ├── Application.hs ├── Authentication │ ├── JWT.hs │ └── Password.hs ├── Config.hs ├── Database │ ├── Base.hs │ ├── Model.hs │ └── User.hs ├── Error.hs ├── Graphql.hs └── Graphql │ └── Resolver │ ├── Root.hs │ └── User.hs ├── stack.yaml └── stack.yaml.lock /.env.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/.env.default -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/app/Main.hs -------------------------------------------------------------------------------- /db/migrations/20200104122356_create_trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/db/migrations/20200104122356_create_trigger.sql -------------------------------------------------------------------------------- /db/migrations/20200112080004_create_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/db/migrations/20200112080004_create_users.sql -------------------------------------------------------------------------------- /db/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/db/schema.sql -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /graphiql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/graphiql.html -------------------------------------------------------------------------------- /images/playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/images/playground.png -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/package.yaml -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/schema.graphql -------------------------------------------------------------------------------- /src/Application.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/src/Application.hs -------------------------------------------------------------------------------- /src/Authentication/JWT.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/src/Authentication/JWT.hs -------------------------------------------------------------------------------- /src/Authentication/Password.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/src/Authentication/Password.hs -------------------------------------------------------------------------------- /src/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/src/Config.hs -------------------------------------------------------------------------------- /src/Database/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/src/Database/Base.hs -------------------------------------------------------------------------------- /src/Database/Model.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/src/Database/Model.hs -------------------------------------------------------------------------------- /src/Database/User.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/src/Database/User.hs -------------------------------------------------------------------------------- /src/Error.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/src/Error.hs -------------------------------------------------------------------------------- /src/Graphql.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/src/Graphql.hs -------------------------------------------------------------------------------- /src/Graphql/Resolver/Root.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/src/Graphql/Resolver/Root.hs -------------------------------------------------------------------------------- /src/Graphql/Resolver/User.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/src/Graphql/Resolver/User.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dandoh/web-haskell-graphql-postgres-boilerplate/HEAD/stack.yaml.lock --------------------------------------------------------------------------------