| # Makefile for gemini-cli | |
| .PHONY: help install build build-sandbox build-all test lint format preflight clean start debug release run-npx create-alias | |
| help: | |
| install: | |
| npm install | |
| build: | |
| npm run build | |
| build-all: | |
| npm run build:all | |
| test: | |
| npm run test | |
| lint: | |
| npm run lint | |
| format: | |
| npm run format | |
| preflight: | |
| npm run preflight | |
| clean: | |
| npm run clean | |
| start: | |
| npm run start | |
| debug: | |
| npm run debug | |
| run-npx: | |
| npx https://github.com/google-gemini/gemini-cli | |
| create-alias: | |
| scripts/create_alias.sh | |