Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lblod/app-reglementaire-bijlage
https://github.com/lblod/app-reglementaire-bijlage
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/lblod/app-reglementaire-bijlage
- Owner: lblod
- License: mit
- Created: 2022-05-11T13:08:03.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-11-25T11:33:37.000Z (about 2 months ago)
- Last Synced: 2024-11-25T12:29:26.125Z (about 2 months ago)
- Language: Elixir
- Size: 780 KB
- Stars: 0
- Watchers: 7
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# mu-project
Bootstrap a mu.semte.ch microservices environment in three easy steps.
## How to
Setting up your environment is done in three easy steps: first you configure the running microservices and their names in `docker-compose.yml`, then you configure how requests are dispatched in `config/dispatcher.ex`, and lastly you start everything.
### Hooking things up with docker-compose
Alter the `docker-compose.yml` file so it contains all microservices you need. The example content should be clear, but you can find more information in the [Docker Compose documentation](https://docs.docker.com/compose/). Don't remove the `identifier` and `db` container, they are respectively the entry-point and the database of your application. Don't forget to link the necessary microservices to the dispatcher and the database to the microservices.
### Configure the dispatcher
Next, alter the file `config/dispatcher.ex` based on the example that is there by default. Dispatch requests to the necessary microservices based on the names you used for the microservice.
### Boot up the system
Boot your microservices-enabled system using docker-compose.
cd /path/to/mu-project
docker-compose upYou can shut down using `docker-compose stop` and remove everything using `docker-compose rm`.