https://github.com/bptlab/mantichor-frontend
Frontend for the Mantichor choreography framework
https://github.com/bptlab/mantichor-frontend
Last synced: 8 months ago
JSON representation
Frontend for the Mantichor choreography framework
- Host: GitHub
- URL: https://github.com/bptlab/mantichor-frontend
- Owner: bptlab
- License: mit
- Created: 2019-04-30T07:28:52.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-12-08T08:29:46.000Z (over 5 years ago)
- Last Synced: 2025-09-09T19:01:13.756Z (9 months ago)
- Language: Vue
- Size: 245 KB
- Stars: 7
- Watchers: 7
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mantichor Frontend

Frontend service for the Mantichor Choreography Execution Engine.
## Deployment
1. Clone the repository
```console
foo@bar:~$ git clone https://github.com/bptlab/mantichor-frontend
foo@bar:~$ cd mantichor-frontend
```
2. Deploy the service using docker compose / stack:
```console
foo@bar:~$ docker-compose up
# OR #
foo@bar:~$ docker stack deploy -c docker-compose.yml mantichor
```
## Development
1. Make sure you have [NodeJS](https://nodejs.org/) and [npm](https://www.npmjs.com/) installed.
2. Clone the repository
```
git clone https://github.com/bptlab/mantichor-frontend
cd mantichor-frontend
```
3. Install the dependencies
```
npm install
```
4. Start the app
```
npm start
```
5. Server is running on http://localhost:8080.
## Building Docker Images manually
1. Login to your docker account
```
docker login
```
2. Build the image
```
docker build -t bptlab/mantichor-frontend:latest .
```
3. Run the image
```
docker run -p 8080:8080 bptlab/mantichor-frontend:latest
```
## License
Copyright (c) 2020
Licensed under the [MIT license](LICENSE).