Files
TechradarDev/Readme.md
2022-05-01 20:27:53 +02:00

40 lines
1.0 KiB
Markdown

# AOE Technology Radar - Content
This is the location of AOE techradar content - published under: https://www.aoe.com/techradar/index.html
If you want to build your own techradar you may want to have a look at https://github.com/AOEpeople/aoe_technology_radar instead.
## Development
### Requirements
Install the [yarn package manager](https://yarnpkg.com/getting-started/install).
### Host the application under a sub path
To host the application under a sub path, set the environment variable `PUBLIC_URL`, e.g. "/techradar".
The default is `/build`.
> For local development I recommend using `/build` and use this for the following steps.
### Build the radar
```
yarn
yarn start
```
Then open here: http://localhost:8080/build
### Build the radar with static files
```
yarn
yarn start:static
```
Then open here: http://localhost:8080/build
### Regenerate the json file based on your changes on md files
```
yarn generateJson
```
You can do this while the server is running.
You can find the newly created rd.json in "/build/rd.json".