casa

(★ 375)

Volunteer management system for nonprofit CASA, which serves foster youth in counties across America.

파일 탐색기

  • .all-contributorsrc
  • .allow_skipping_tests
  • .annotaterb.yml
  • .better-html.yml
  • .browserslistrc
  • .dockerignore
  • .env.example
  • .erb_lint.yml
  • .gitignore
  • .npmrc
  • .nvmrc
  • .prettierrc.yml
  • .rspec
  • .rspec_parallel
  • .rubocop.yml
  • .ruby-gemset
  • .ruby-version
  • .slugignore
  • .standard.yml
  • .standard_todo.yml
  • .tool-versions
  • .yamllint.yml
  • app.json
  • babel.config.js
  • cc-test-reporter
  • CLAUDE.md
  • code-of-conduct.md
  • config.ru
  • CONTRIBUTING.md
  • DEPLOY_CHECKLIST.md
  • design-todo.md
  • design.md
  • docker-compose.yml
  • docker-entrypoint.sh
  • Dockerfile
  • flake.lock
  • flake.nix
  • Gemfile
  • Gemfile.lock
  • gemset.nix
  • jest.config.js
  • LICENSE.md
  • MIGRATION-MAP.md
  • noop
  • package-lock.json
  • package.json
  • postcss.config.js
  • Procfile
  • Procfile.dev
  • PROSOPITE_TODO.md
  • Rakefile
  • README.md
  • renovate.json
  • SECURITY.md

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

bundle

설명 보기 ▼

Ruby 프로그래밍 언어의 종속성 관리자.
더 많은 정보: <https://bundler.io/man/bundle.1.html>.

bundle install

작업 디렉토리에 있는 `Gemfile`에 정의된 모든 gem을 설치:

bundle exec {{command}} {{arguments}}

현재 번들의 컨텍스트에서 명령을 실행:

bundle update

`Gemfile` 에 정의된 규칙에 따라 모든 gem을 업데이트 하고 `Gemfile.lock`을 재생성:

🔍

gem

설명 보기 ▼

Ruby 프로그래밍 언어용 패키지 관리자.
더 많은 정보: <https://guides.rubygems.org/command-reference/>.

gem search {{regex}} {{[-a|--all]}}

원격 gem을 검색하고 사용 가능한 모든 버전을 표시:

gem install {{gem_name}}

최신 버전의 gem을 설치:

gem install {{gem_name}} {{[-v|--version]}} {{1.0.0}}

특정 버전의 gem을 설치:

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

npm run

설명 보기 ▼

Run a script.

npm run

List available scripts:

npm run {{script_name}}

Run a script:

npm run {{script_name}} -- {{argument}} {{--option}}

Pass arguments to a script:

🔍

nvm

설명 보기 ▼

Node.js 버전을 설치, 제거 또는 전환.
"12.8" 또는 "v16.13.1" 같은 버전 번호와 "stable", "system" 같은 레이블을 지원.
관련 항목: `asdf`.
더 많은 정보: <https://github.com/nvm-sh/nvm#usage>.

nvm install {{node_version}}

특정 버전의 Node.js 설치:

nvm install {{node_version}}

Node.js의 특정 버전 설치:

nvm use {{node_version}}

현재 셸에서 특정 버전의 Node.js 사용:

🔍

rails

설명 보기 ▼

서버 측 MVC 프레임워크로, Ruby로 작성되었습니다.
`generate`와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다.
더 많은 정보: <https://guides.rubyonrails.org/command_line.html>.

rails new "{{project_name}}"

새 Rails 프로젝트 생성:

rails generate scaffold Post title:string body:text

현재 프로젝트의 로컬 서버를 포트 3000에서 시작:

rails db:migrate

현재 프로젝트의 로컬 서버를 지정된 포트에서 시작:

🔍

rake

설명 보기 ▼

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

rake

`default` Rakefile 작업 실행:

rake {{task}}

특정 작업 실행:

rake --jobs {{n}}

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

🔍

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}}

패키지 제거:

🔍

dnf install

설명 보기 ▼

Install packages on Red Hat-based distributions.

sudo dnf {{[in|install]}} {{package1 package2 ...}}

Install packages by name:

sudo dnf {{[in|install]}} {{path/to/file}}

Install a package from a local file:

sudo dnf {{[in|install]}} {{https://example.com/package.rpm}}

Install a package from the internet:

🔍

snap

설명 보기 ▼

Manage the "snap" self-contained software packages.
Similar to what `apt` is for `.deb`.

snap find {{query}}

Search for a package:

snap install {{package}}

Install a package:

snap refresh {{package}}

Update a package:

🔍

choco install

설명 보기 ▼

Install one or more packages with Chocolatey.

choco install {{package1 package2 ...}}

Install one or more packages:

choco install {{path\to\packages_file.config}}

Install packages from a custom configuration file:

choco install {{path\to\file}}

Install a specific `.nuspec` or `.nupkg` file:

# 프로젝트 배지

// repository documentation