0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

onlineで図を作成

Last updated at Posted at 2017-08-24

オブジェクト図:
plantuml.com

シーケンス図:
https://www.websequencediagrams.com

ER図:
https://github.com/BurntSushi/erd
https://github.com/ftomassetti/erd-web-server



centos:
sudo yum install haskell-platform
sudo yum install graphviz
cabal install
cabal update
cabal configure
cabal build
cd dist/build/
./erd -i ../../../examples/simple.er -o simple.pdf

---web-server
cabal update
cabal install
erd-web-server -p 8000
# or
dist/build/erd-web-server/erd-web-server -p 8000
---

Windows:
 githubからソースをクローン
 http://www.haskell.org/platform/からWindows版をインストール
 Graphvizをインストール
  環境変数のpathに「C:\Program Files (x86)\Graphviz2.38\bin」を追加

 cmdで以下のコマンドを実行
   cd D:\work\erd
   cabal update
   不要かもcabal install graphviz
   cabal configure
   cabal build
   cd dist\build\erd\
   erd -i examples/nfldb.er -o nfldb.pdf
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?