Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bgpat/isucon10q-private
復習
https://github.com/bgpat/isucon10q-private
Last synced: 28 days ago
JSON representation
復習
- Host: GitHub
- URL: https://github.com/bgpat/isucon10q-private
- Owner: bgpat
- License: mit
- Created: 2020-09-18T18:39:07.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T08:49:43.000Z (about 1 year ago)
- Last Synced: 2024-10-14T19:23:48.602Z (2 months ago)
- Language: Go
- Size: 6.59 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# isucon10q-private
## 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/isucon10q-private/settings/access.
After them have confirmed, run [Update SSH Keys](https://github.com/bgpat/isucon10q-private/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/isucon10q-private.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
```