- Boiler plate project for
- graphql-yoga(express)
- typescript
- typeorm
- postgres
- Express Server (port 4000)
- Graphql Entry Point (/graphql)
- Graphql Playground Page (/playground)
- Typeorm Settings For Postgres
- Basic User Entity (src/entities/User.ts)
- Email Sign Up
- Email Sign In
- Get My Profile
mkdir graphql-project
cd graphql-project
git clone https://github.com/DalYoon/graphql-yoga-with-typeorm-boilerplate .
DB_ENDPOINT=(your database address)
DB_NAME=DB-NAME=(your database name)
DB_USERNAME=(your database username)
DB_PASSWORD=(your database password)
JWT_SECRET=(your JWT secret for authentication)
Install the GraphQL VSCode Extension for best experience.
yarn
yarn dev