All Projects → weibeld → heroku-buildpack-graphviz

weibeld / heroku-buildpack-graphviz

Licence: MIT license
Install Graphviz on Heroku

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to heroku-buildpack-graphviz

buildpack-stdlib
[DEPRECATED] A standard library for Heroku buildpacks written in bash.
Stars: ✭ 19 (+5.56%)
Mutual labels:  buildpack, heroku-buildpack
heroku-buildpack-tex
A Heroku buildpack to run TeX Live inside a dyno.
Stars: ✭ 18 (+0%)
Mutual labels:  buildpack, heroku-buildpack
Create React App Buildpack
⚛️ Heroku Buildpack for create-react-app: static hosting for React.js web apps
Stars: ✭ 3,161 (+17461.11%)
Mutual labels:  buildpack, heroku-buildpack
Diagrams
🎨 Diagram as Code for prototyping cloud system architectures
Stars: ✭ 15,756 (+87433.33%)
Mutual labels:  graphviz
Kaitai struct
Kaitai Struct: declarative language to generate binary data parsers in C++ / C# / Go / Java / JavaScript / Lua / Perl / PHP / Python / Ruby
Stars: ✭ 2,736 (+15100%)
Mutual labels:  graphviz
webpack-rails-buildpack
Buildpack for webpack-rails
Stars: ✭ 19 (+5.56%)
Mutual labels:  buildpack
bandersnatch-graph
Graphing all possibilities in the Netflix Black Mirror episode, "Bandersnatch"
Stars: ✭ 42 (+133.33%)
Mutual labels:  graphviz
Uecs
Ubpa Entity-Component-System (U ECS) in Unity3D-style
Stars: ✭ 174 (+866.67%)
Mutual labels:  graphviz
rtl2dot
C call graph generator
Stars: ✭ 48 (+166.67%)
Mutual labels:  graphviz
Azure Plantuml
PlantUML sprites, macros, and other includes for Azure services
Stars: ✭ 247 (+1272.22%)
Mutual labels:  graphviz
C4 Plantuml
C4-PlantUML combines the benefits of PlantUML and the C4 model for providing a simple way of describing and communicate software architectures
Stars: ✭ 3,522 (+19466.67%)
Mutual labels:  graphviz
Graphviz
A Swift package for working with GraphViz
Stars: ✭ 230 (+1177.78%)
Mutual labels:  graphviz
dockerfilegraph
Visualize your multi-stage Dockerfiles
Stars: ✭ 55 (+205.56%)
Mutual labels:  graphviz
Gofsm
a featured FSM that can export state images
Stars: ✭ 222 (+1133.33%)
Mutual labels:  graphviz
graphviz
PHP Graphviz library
Stars: ✭ 70 (+288.89%)
Mutual labels:  graphviz
Go Graphviz
Go bindings for Graphviz
Stars: ✭ 183 (+916.67%)
Mutual labels:  graphviz
home-assistant-graph
No description or website provided.
Stars: ✭ 30 (+66.67%)
Mutual labels:  graphviz
Visualize ruby
Transform code into a flowchart and experimentally trace the execution path through it
Stars: ✭ 237 (+1216.67%)
Mutual labels:  graphviz
Ansible Playbook Grapher
A command line tool to create a graph representing your Ansible playbook tasks and roles
Stars: ✭ 234 (+1200%)
Mutual labels:  graphviz
ecto erd
A mix task for generating Entity Relationship Diagram from Ecto schemas available in your project.
Stars: ✭ 173 (+861.11%)
Mutual labels:  graphviz

Heroku Buildpack: Graphviz

Install Graphviz on Heroku.

Description

This buildpack installs Graphviz on Heroku and makes it available to your Heroku application.

The installed version of Graphviz depends on the Heroku stack (which is automatically detected by the buildpack):

The Graphviz executables are installed to the following directory:

/app/.heroku-buildpack-graphviz/usr/bin

The above directory is added to the PATH environment variable, so Graphviz commands like dot and neato are directly available to your app without specifying their path.

Install

For adding the buildpack in addition with other buildpacks, use:

heroku buildpacks:add https://github.com/weibeld/heroku-buildpack-graphviz

For setting the buildpack as the only buildpack, use:

heroku buildpacks:set https://github.com/weibeld/heroku-buildpack-graphviz

You can verify that the buildpack has been added with:

heroku buildpacks

Verify

After deploying your application with the buildpack at least once, you can verify the installation of Graphviz with:

heroku run dot -V

The above command runs dot -V on the application dyno, that is, in the same environment in which your application is running. That means, if the above command succeeds, your application can use Graphviz commands such as dot in the same way.

Develop

For implementation notes, see DEVELOPMENT.md.

License

Licensed under the MIT License. See LICENSE.md file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].