ima2-gen

(★ 708)

Local-first visual generation runtime and studio for people and coding agents, with reproducible image and video workflows across multiple providers.

파일 탐색기

  • .dockerignore
  • .env.example
  • .gitattributes
  • .gitignore
  • .node-version
  • .npmignore
  • AGENTS.md
  • CHANGELOG.md
  • config.ts
  • CONTRIBUTING.md
  • docker-compose.yml
  • Dockerfile
  • flake.lock
  • flake.nix
  • LICENSE
  • package-lock.json
  • package.json
  • README.md
  • SECURITY.md
  • server.ts
  • tsconfig.bin.json
  • tsconfig.build.json
  • tsconfig.json
  • tsconfig.tests.json

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

agy

설명 보기 ▼

Google의 에이전트 기반 개발 플랫폼.
더 많은 정보: <https://antigravity.google/docs>.

agy {{path/to/file_or_directory}}

특정 파일 또는 디렉터리 열기:

agy {{[-d|--diff]}} {{path/to/file1}} {{path/to/file2}}

두 파일을 비교:

agy chat "{{prompt}}"

현재 작업 디렉터리에서 프롬프트를 사용해 채팅 세션 실행:

🔍

docker build

설명 보기 ▼

Build an image from a Dockerfile.

docker build .

Build a Docker image using the Dockerfile in the current directory:

docker build {{github.com/creack/docker-firefox}}

Build a Docker image from a Dockerfile at a specified URL:

docker build {{[-t|--tag]}} {{name:tag}} .

Build a Docker image and tag it:

🔍

docker run

설명 보기 ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

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 install

설명 보기 ▼

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

Download the latest version of a package and add it to the list of dev dependencies in `package.json`:

🔍

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:

🔍

npm test

설명 보기 ▼

This command is an alias of `npm run test`.

tldr npm run

View documentation for the original command:

🔍

npx

설명 보기 ▼

이 명령은 `npm exec`의 별칭입니다.

tldr npm exec

자세한 내용은 원본 명령을 참고하세요:

🔍

unset

설명 보기 ▼

셸 변수 또는 함수를 제거.
더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#index-unset>.

unset {{variable}}

변수 `foo`를 제거하거나, 변수가 존재하지 않을 경우 함수 `foo`를 제거:

unset -v {{variable1 variable2 ...}}

변수 `foo`와 `bar` 제거:

unset -f {{function_name1 function_name2}}

함수 `my_func` 제거:

// repository documentation