Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/volny/flask-microservices


https://github.com/volny/flask-microservices

Last synced: about 13 hours ago
JSON representation

Awesome Lists containing this project

README

        

# following this presentation:

consisting of 4 "microservices"

* Main
* Users
* Client
* Swagger
* Eval

## Steps

### users db

* install users db: `docker-compose up -d --build users-db`
(or just install all services at once with `docker-compose up -d --build`)
* check if it worked `docker exec -ti users-db psql -U postgres -W`

### users app

* `docker-compose up -d --build users-service`
* start, seed, test

```sh
# create and seed the db
docker-compose run users-service python manage.py recreate_db
docker-compose run users-service python manage.py seed_db

# run unit and integration tests
docker-compose run users-service python manage.py test
```

### client

* build

```sh
# add env variable
export REACT_APP_USERS_SERVICE_URL=localhost

# build and run:
docker-compose up -d --build web-service
```

* test it works by visiting `http://localhost:9000`

### swagger

* `docker-compose up -d --build swagger`
* check the auto-generated docs at `http://localhost:8080/`