Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yfuruyama/real-world-plantuml
Source code of https://real-world-plantuml.com/
https://github.com/yfuruyama/real-world-plantuml
Last synced: 3 days ago
JSON representation
Source code of https://real-world-plantuml.com/
- Host: GitHub
- URL: https://github.com/yfuruyama/real-world-plantuml
- Owner: yfuruyama
- Created: 2018-01-13T15:10:11.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-11-24T20:23:01.000Z (about 2 years ago)
- Last Synced: 2025-02-10T21:13:25.847Z (10 days ago)
- Language: Go
- Homepage:
- Size: 976 KB
- Stars: 443
- Watchers: 20
- Forks: 39
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
real-world-plantuml
===Source code of https://real-world-plantuml.com/
## Architecture
## For development
### web
Run server
```
make run GA_TRACKING_ID=${GA_TRACKING_ID}
```Register dummy UML: access to `/debug/dummy_uml` in your browser
### indexer
Run server
```
make run GITHUB_API_TOKEN=${GITHUB_API_TOKEN} GCS_BUCKET=${GCS_BUCKET}
```### renderer
Run server
```
make run
```### scraping
Launch Chrome with remote debugging enabled
```
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222
```Run scraping script
```
cd scraping
npm install
node scraping.js > results/YYYYMMDD_01.txt
```