The Angular quick start project launches a blog app with content from Prepr.
Make sure to install the dependencies:
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install --shamefully-hoist
To update your URI go to src/app/graphql.module.ts and replace the value of the uri with your corresponding graphql uri. It should look something like this:
const uri = 'https://graphql.prepr.io/7f05e9e2f17f1b3d5e08dab3a565acbea8b87745473917e159f70ae1cf0334b9'; // <-- add the URL of the GraphQL server here
Start the development server on http://localhost:4200
npm start
Build the application for production:
npm run build
Check out the deployment documentation for more information.