Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bgpat/kstmisucon2021gw
https://github.com/bgpat/kstmisucon2021gw
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bgpat/kstmisucon2021gw
- Owner: bgpat
- License: mit
- Created: 2021-04-30T19:21:39.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T20:09:22.000Z (about 1 year ago)
- Last Synced: 2024-10-14T19:23:19.598Z (3 months ago)
- Language: Go
- Size: 2.92 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kstmisucon2021gw
## usage
### initialize
#### ~create a new repository~ already done
Create a new repository from https://github.com/bgpat/isucon-boilerplate/generate.
#### add members
Invite your team members from https://github.com/bgpat/kstmisucon2021gw/settings/access.
After them have confirmed, run [Update SSH Keys](https://github.com/bgpat/kstmisucon2021gw/actions?query=workflow%3A%22Update+SSH+Keys%22).#### install to the competition server
Run following commands in the each competition server:
```bash
cd /
git init
git remote add origin https://github.com/bgpat/kstmisucon2021gw.git
git fetch origin master
git reset --hard FETCH_HEAD
make
```Add deploy key and run `git push -u origin master`.
### edit config file
```bash
vim /etc/nginx/nginx.conf
```### track source files by git
```bash
git add -f *.go
```