Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ ztm_agent_db*
# buck2 out
buck-out

# docker files
docker/mega_mono_dockerfile
docker/mega_moon_dockerfile
docker/mega_pg_dockerfile
# Dockderfile
docker/mono-engine-dockerfile
docker/mono-pg-dockerfile
docker/mono-ui-dockerfile
docker/aries-engine-dockerfile
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,20 @@ docker run --rm -it -d --name mono-engine --network mono-network -v /tmp/data/mo
docker run --rm -it -d --name mono-ui --network mono-network -e MEGA_INTERNAL_HOST=http://mono-engine:8000 -e MEGA_HOST=http://localhost:8000 -p 3000:3000 mono-ui:0.1-pre-release
```

4. Try to upload a repository to mono-engine
```bash
git clone http://localhost:8000/project.git
cd project
git clone https://github.com/dagrs-dev/dagrs.git
sudo rm -r dagrs/.git
git add .
git commit -a -m"Initial the dagrs project"
git push
```

5. Check the repository in UI
Open the mono-ui in your browser with `http://localhost:3000`, and you will see the `project` folder.

## Quick Review of Architecture

![Mega Architect](docs/images/Mega_Bin_and_Modules.png)
Expand Down