Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 993 Bytes

README.md

File metadata and controls

47 lines (31 loc) · 993 Bytes

angular-quick-start

The Angular quick start project launches a blog app with content from Prepr.

Setup

Make sure to install the dependencies:

# yarn
yarn install

# npm
npm install

# pnpm
pnpm install --shamefully-hoist

Update your graphql URI

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

Development Server

Start the development server on http://localhost:4200

npm start

Production

Build the application for production:

npm run build

Check out the deployment documentation for more information.

The end result

blog site end result