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
- Host: GitHub
- URL: https://github.com/helsingborg-stad/helsingborg-viva-api-adapter
- Owner: helsingborg-stad
- License: mit
- Archived: true
- Created: 2020-04-27T08:33:05.000Z (about 6 years ago)
- Default Branch: dev
- Last Pushed: 2023-08-02T01:48:34.000Z (almost 3 years ago)
- Last Synced: 2025-03-14T18:48:45.675Z (over 1 year ago)
- Topics: flask, flask-restful, hacktoberfest, hacktoberfest-accepted, mitt-helsingborg, pipenv, python
- Language: Python
- Homepage:
- Size: 12.3 MB
- Stars: 2
- Watchers: 7
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```