https://github.com/preprio/angular-quick-start
https://github.com/preprio/angular-quick-start
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/preprio/angular-quick-start
- Owner: preprio
- Created: 2023-06-16T11:54:31.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-27T13:42:28.000Z (3 months ago)
- Last Synced: 2025-02-27T19:26:04.831Z (3 months ago)
- Language: TypeScript
- Size: 767 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Angular Quick Start
The Angular quick start project launches a blog app with content from Prepr.Look at the [Angular Quick start guide](https://docs.prepr.io/connecting-front-end-apps/angular-quick-start-guide) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install# npm
npm install# pnpm
pnpm install --shamefully-hoist
```## Update the environment file
Go to the **environments** folder in the project and open the **environments.ts** file to replace `YOUR_PREPR_GRAPHQL_URL` with the *API URL* of the Prepr *GraphQL Preview* access token from your demo environment.
## Development Server
Start the development server on http://localhost:4200
```bash
ng serve
```## Production
To build the project run:
```bash
ng build
```
This will compile your project and store the build artifacts in the `dist/` directory.## Additional Resources
For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
## The end result
