https://github.com/houseofangular/angular-love
Angular Love Blog
https://github.com/houseofangular/angular-love
angular blog
Last synced: 8 months ago
JSON representation
Angular Love Blog
- Host: GitHub
- URL: https://github.com/houseofangular/angular-love
- Owner: HouseOfAngular
- Created: 2023-11-02T20:45:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-08-04T09:59:09.000Z (8 months ago)
- Last Synced: 2025-08-09T03:48:06.268Z (8 months ago)
- Topics: angular, blog
- Language: TypeScript
- Homepage: https://angular.love/
- Size: 7.48 MB
- Stars: 59
- Watchers: 3
- Forks: 10
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AngularLove
## BFF
### Development
When developing locally via wrangler dev, add environment variables by
creating a `.dev.vars` file in the root directory of BFF app
```
touch ./apps/blog-bff/.dev.vars
```
Check `apps/blog-bff/.dev.vars.example` to follow the schema.
### Working with Angular Client
To change the BFF URL in Angular, create a new file named `.env.local` in the `apps/blog` directory.
Copy the contents of the main `.env` file into this new file and update the `AL_API_URL` key.
The newly created `.env.local` file will be recognized during the build process.
## Code Scaffolding
To generate new angular library, use the following command:
```
nx g @nx/angular:library your-custom-name --directory=shared
```
## Storybook
To run Storybook locally use the following command:
```
pnpm run start:storybook
```
To generate stories for specific library (aka project) use the following command:
```
pnpm nx g @nx/angular:stories --project=
```