Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bgpat/isucon9q
https://github.com/bgpat/isucon9q
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bgpat/isucon9q
- Owner: bgpat
- License: mit
- Created: 2019-09-08T00:42:30.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T08:39:47.000Z (about 1 year ago)
- Last Synced: 2024-10-14T19:23:31.088Z (3 months ago)
- Language: Go
- Size: 1.93 MB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# isucon-boilerplate
## usage
### initialize
Replace `$GITHUB_REPO_URL` and execute the following commands in the competition machine.
(e.g., `GITHUB_REPO_URL=https://github.com/bgpat/isucon-boilerplate.git`)```bash
export GITHUB_REPO_URL=https://github.com/bgpat/isucon9q.git
cd /
git init
git remote add origin $GITHUB_REPO_URL
git fetch origin master
git reset --hard FETCH_HEAD
make USERS="bgpat fono09 Goryudyuma"
```### edit config file
```bash
vim /etc/nginx/nginx.conf
```### track source files by git
```bash
git add -f *.go
```