An open API service indexing awesome lists of open source software.

https://github.com/helsingborg-stad/helsingborg-viva-api-adapter

Make AWS happy together with VIVA
https://github.com/helsingborg-stad/helsingborg-viva-api-adapter

flask flask-restful hacktoberfest hacktoberfest-accepted mitt-helsingborg pipenv python

Last synced: 12 months ago
JSON representation

Make AWS happy together with VIVA

Awesome Lists containing this project

README

          

# Viva API Adapter - VADA

## Requirements

- Homebrew
- Python 3.7.7 or higher
- Pipenv

## Getting started

### Make sure [homebrew](https://brew.sh) is installed and up to date

```bash
brew update
brew upgrade
```

### Install pipenv

```bash
brew install pipenv
```

### Clone repo

```bash
git clone git@github.com:helsingborg-stad/helsingborg-viva-api-adapter.git
cd helsingborg-viva-api-adapter
```

### Setup python env

```bash
pipenv shell
pipenv install
```

### Set Envs

```bash
cp example.env .env
vi .env
export FLASK_ENV=development
export FLASK_DEBUG=true
export FLASK_APP=wsgi.py
```

### Run app

```bash
flask run
```