https://github.com/ftomassetti/erd-web-server
A web server to generate ER diagrams
https://github.com/ftomassetti/erd-web-server
Last synced: 6 months ago
JSON representation
A web server to generate ER diagrams
- Host: GitHub
- URL: https://github.com/ftomassetti/erd-web-server
- Owner: ftomassetti
- License: mit
- Created: 2015-04-09T16:20:05.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-03-11T18:33:58.000Z (over 6 years ago)
- Last Synced: 2025-03-25T11:03:00.222Z (6 months ago)
- Language: JavaScript
- Size: 666 KB
- Stars: 34
- Watchers: 6
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# erd-web-server
A web server to generate ER diagrams.

The code generating the ER diagram was stolen from the fantastic [erd](https://github.com/BurntSushi/erd) project.
Unfortunately it is an application, not a library and Haskell does not permit to use an application as a dependency
so I just copied the code. Kudos to the original author [Andrew Gallant](http://burntsushi.net/).Hopefully we could extract the code or erd in a library used by erd and erd-web-server (see [issue on erd](https://github.com/BurntSushi/erd/issues/10))
# Cool, how can I run this stuff?
For now you have to clone the repository and run:
```
cabal update
cabal install
erd-web-server -p 8000
# or
dist/build/erd-web-server/erd-web-server -p 8000
```In the future we hope to put this on Hackage.
## I do not know how to run this Haskell weird stuff on my Mac
Simply install cabal:
```
brew install cabal-install
```