Skip to content
This repository has been archived by the owner on May 25, 2024. It is now read-only.

Commit

Permalink
ci: fix everything ?
Browse files Browse the repository at this point in the history
  • Loading branch information
Zijian Zhang committed Mar 28, 2024
1 parent 44f3315 commit e46f995
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 72 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
working-directory: host
- run: |
cp CHANGELOG.md COPYING host/README.md release/
cp CHANGELOG.md COPYING README.md release/
cp -r host/bin/* release/
- run: |
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
working-directory: viewer
- run: |
cp CHANGELOG.md COPYING release/
cp CHANGELOG.md COPYING README.md release/
cp -r viewer/build/* release/
- run: |
Expand Down
53 changes: 49 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,64 @@
# THUEDC25
# thuedc-25

Platform for the 25th Tsinghua University Electronic Design Competition

## Install

Releases of this project do not need to be installed. Just download the latest release and run the executable file.
This platform does not require installation. Just download and extract the host from releases.

## Usage

1. Launch the host program.
1. Run the host program.

1. Visit <https://THUASTA.github.io/THUEDC25>.
1. Visit <https://thuasta.github.io/thuedc-25/viewer>.

1. Connect to the host program.

### Configuration

When first running the host, a `config.json` file will be created under current work directory. You can edit the configurations inside it.

Here is an example:

```json
{
"loggingLevel": "Information",
"serverPort": 8080,
"game": {
"diamondMines": [
{
"Item1": 1,
"Item2": 3
},
{
"Item1": 4,
"Item2": 4
}
],
"goldMines": [
{
"Item1": 2,
"Item2": 1
},
{
"Item1": 4,
"Item2": 7
}
],
"ironMines": [
{
"Item1": 0,
"Item2": 1
},
{
"Item1": 7,
"Item2": 6
}
]
}
}
```

## Contributing

Ask questions by creating an issue.
Expand Down
66 changes: 0 additions & 66 deletions host/README.md

This file was deleted.

0 comments on commit e46f995

Please sign in to comment.