Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flcdrg/azure-resource-namer
Tool to create Azure resource names
https://github.com/flcdrg/azure-resource-namer
azure azure-resources hacktoberfest naming
Last synced: 3 months ago
JSON representation
Tool to create Azure resource names
- Host: GitHub
- URL: https://github.com/flcdrg/azure-resource-namer
- Owner: flcdrg
- Created: 2021-08-18T09:47:29.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T21:06:49.000Z (5 months ago)
- Last Synced: 2024-10-15T07:10:10.833Z (4 months ago)
- Topics: azure, azure-resources, hacktoberfest, naming
- Language: TypeScript
- Homepage: https://david.gardiner.net.au/azure-resource-namer/
- Size: 2.16 MB
- Stars: 5
- Watchers: 5
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Azure Resource Namer
A simple web application that helps you come up with names for your Azure resources.
Naming suggestions are based on the examples from the [Cloud Adoption Framework naming convention](https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/resource-naming).
This project is bootstrapped by [aurelia-cli](https://github.com/aurelia/cli).
For more information, go to https://aurelia.io/docs/cli/webpack
## Run dev app
Run `yarn start`, then open `http://localhost:8080`
You can change the standard webpack configurations from CLI easily with something like this: `yarn start -- --open --port 8888`. However, it is better to change the respective npm scripts or `webpack.config.js` with these options, as per your need.
To enable Webpack Bundle Analyzer, do `yarn run analyze` (production build).
To enable hot module reload, do `yarn start -- --hmr`.
To change dev server port, do `yarn start -- --port 8888`.
To change dev server host, do `yarn start -- --host 127.0.0.1`
**PS:** You could mix all the flags as well, `yarn start -- --host 127.0.0.1 --port 7070 --open --hmr`
For long time aurelia-cli user, you can still use `au run` with those arguments like `au run --env prod --open --hmr`. But `au run` now simply executes `yarn start` command.
## Build for production
Run `yarn build`.
## Unit tests
Run `au test` (or `au jest`).
To run in watch mode, `au test --watch` or `au jest --watch`.