SIPtreadmill

(★ 19)

Web application to faciliate benchmarking and testing SIP based services

파일 탐색기

  • .env.sample
  • .gitignore
  • .pkgr.yml
  • .rspec
  • .ruby-version
  • .travis.yml
  • Berksfile
  • Berksfile.lock
  • CHANGELOG.md
  • config.ru
  • Gemfile
  • Gemfile.lock
  • Guardfile
  • LICENSE
  • Makefile
  • Procfile
  • Rakefile
  • README.md
  • Vagrantfile

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

rake

설명 보기 ▼

Ruby용 Make와 유사한 프로그램.
`rake`의 작업은 Rakefile에 지정됩니다.
더 많은 정보: <https://ruby.github.io/rake/>.

rake

`default` Rakefile 작업 실행:

rake {{task}}

특정 작업 실행:

rake --jobs {{n}}

동시에 `n`개의 작업 병렬 실행 (기본값은 CPU 코어 수 + 4):

🔍

vagrant plugin

설명 보기 ▼

Manage Vagrant plugins.
See also: `vagrant`.

vagrant plugin list

List all the plugins currently installed:

vagrant plugin install {{vagrant_vbguest}}

Install a plugin from remote repositories, usually RubyGems:

vagrant plugin install {{path/to/my_plugin.gem}}

Install a plugin from a local file source:

🔍

vagrant ssh

설명 보기 ▼

SSH into a running Vagrant machine.
See also: `vagrant`.

vagrant ssh

SSH into the machine running in the current directory:

vagrant ssh {{name|id}}

Target a running machine by name or ID:

vagrant ssh {{[-c|--command]}} {{ssh_command}}

Execute an SSH command and exit:

🔍

vagrant

설명 보기 ▼

경량, 재생 가능, 휴대 가능한 개발 환경 관리 도구.
더 많은 정보: <https://developer.hashicorp.com/vagrant/docs/cli>.

vagrant init

현재 디렉토리에 기본 Vagrant 박스로 Vagrantfile 생성:

vagrant init {{ubuntu/focal64}}

HashiCorp Atlas에서 Ubuntu 20.04 (Focal Fossa) 박스로 Vagrantfile 생성:

vagrant up

Vagrant 환경 시작 및 프로비저닝:

🔍

apt-get

설명 보기 ▼

Debian 및 Ubuntu 패키지 관리 도구.
`apt-cache`를 사용하여 패키지를 검색하세요.
Ubuntu 16.04 이후 버전에서는 대화형 사용 시 `apt` 사용을 권장합니다.
더 많은 정보: <https://manned.org/apt-get.8>.

sudo apt-get update

사용 가능한 패키지 및 버전 목록 업데이트 (다른 `apt-get` 명령어 실행 전에 권장됨):

sudo apt-get install {{package}}

패키지 설치 또는 최신 버전으로 업데이트:

sudo apt-get remove {{package}}

패키지 제거:

🔍

foreman

설명 보기 ▼

Procfile 기반 애플리케이션 관리 도구.
더 많은 정보: <https://manned.org/foreman>.

foreman start

현재 디렉토리의 Procfile로 애플리케이션 시작:

foreman start {{[-f|--procfile]}} {{Procfile}}

지정된 Procfile로 애플리케이션 시작:

foreman start {{process}}

특정 애플리케이션 시작:

// repository documentation