blob: 48eba404b5d657e54fc82a68d6ee7add09945dcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
Apigateway
==========
A apigateway of web application for parser sub-projects, such as tosca2heat and policy2tosca.
Building
--------
First you need some dependencies:
.. code-block:: bash
pip install bindep
apt-get install $(bindep -b)
pip install -f requirements.txt
pip install grpcio-tools
go get -u github.com/golang/protobuf/protoc-gen-go
Then you can build the code:
.. code-block:: bash
autoreconf -fi
./configure
make
|