blob: 74bc278ead34c91b33112ee23756112cade8bd94 [file] [log] [blame]
Zack Williamsda8a5d82017-09-08 12:45:14 -07001#!/usr/bin/env bash
2
3# Copyright 2017-present Open Networking Foundation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
Zack Williams6c78f912018-06-21 10:56:24 -070017set -e -o pipefail
18
Zack Williamsda8a5d82017-09-08 12:45:14 -070019BASEDIR=$(pwd)
20VENVDIR=venv-xosdocs
21
22# create venv if it's not yet there
23if [ ! -d "$BASEDIR/$VENVDIR" ]; then
Zack Williams6c78f912018-06-21 10:56:24 -070024 echo "Setting up virtualenv for XOS Swagger Docs"
25 virtualenv -q $BASEDIR/$VENVDIR --no-site-packages
26 pip install --upgrade pip
27 echo "Virtualenv created."
Zack Williamsda8a5d82017-09-08 12:45:14 -070028fi
29
30# activate the virtual env
31if [ ! $VIRTUAL_ENV ]; then
Zack Williams6c78f912018-06-21 10:56:24 -070032 source $BASEDIR/$VENVDIR/bin/activate
33 echo "Virtualenv activated."
Zack Williamsda8a5d82017-09-08 12:45:14 -070034fi
35
36# install pip packages
37pip install -e $BASEDIR/$VENVDIR/../../lib/xos-genx
Matteo Scandolob8a4b122018-01-19 13:36:22 -080038pip install plyxproto jinja2 pattern astunparse pyyaml colorama