데이터

동적 테이블·데이터·환경변수 관련 명령

axhub tables

앱의 동적 테이블을 관리해요.

axhub tables check-availability

테이블 이름 사용 가능 여부를 확인해요.

플래그타입설명기본값
--appstringApp slug or id to validate within
--tablestringProposed table name to validate

axhub tables column-types

사용 가능한 컬럼 타입을 봐요.

플래그타입설명기본값
--appstringApp slug or id to inspect column types for

axhub tables columns

테이블 컬럼을 관리해요.

axhub tables columns add

컬럼을 추가해요.

플래그타입설명기본값
--appstring
--defaultstring
--dry-runbooleantrue
--executeboolean
--namestring
--nullableboolean
--tablestring
--typestring

axhub tables columns remove

컬럼을 삭제해요.

플래그타입설명기본값
--appstring
--dry-runbooleantrue
--executeboolean
--namestring
--tablestring

axhub tables create

테이블을 만들어요.

플래그타입설명기본값
--appstringApp slug or id that will own the table
--columnstringColumn spec name:type[:nullable][:default]
--descriptionstringOptional human description (max 1000 bytes, ~333 Korean chars or ~1000 ASCII chars)
--dry-runbooleanPreview the create request without mutating the backendtrue
--executebooleanActually create the table
--owner-columnstringColumn name used as the row owner
--schemastringYAML or JSON schema file
--tablestringTable name to create

axhub tables drop

테이블을 삭제해요.

플래그타입설명기본값
--appstring
--confirmstring
--dry-runbooleantrue
--executeboolean
--forceboolean
--tablestringTable id or table name to drop

axhub tables get

테이블 정보를 조회해요.

플래그타입설명기본값
--appstringApp slug or id that owns the table
--tablestringTable id or table name

axhub tables grants

테이블 접근 권한을 관리해요.

axhub tables grants issue

테이블 권한을 발급해요.

플래그타입설명기본값
--actionsstring
--appstring
--dry-runbooleantrue
--executeboolean
--principal-idstring
--principal-typestring
--tablestring

axhub tables grants list

테이블 권한 목록을 봐요.

플래그타입설명기본값
--appstring
--tablestring

axhub tables grants revoke

테이블 권한을 철회해요.

플래그타입설명기본값
--appstring
--dry-runbooleantrue
--executeboolean
--grant-idstring
--tablestring

axhub tables list

테이블 목록을 봐요.

플래그타입설명기본값
--allbooleanFetch all pages instead of a single page
--appstringApp slug or id to list tables for
--pageintegerPage number to request
--per-pageintegerNumber of tables per page

axhub tables rows

테이블 행을 조회해요.

플래그타입설명기본값
--appstringApp slug or id that owns the table
--pageintegerPage number to request
--per-pageintegerNumber of rows per page (max 200)
--tablestringTable name to browse

axhub data

앱 테이블의 데이터를 읽고 써요.

axhub data count

행 개수를 세요.

플래그타입설명기본값
--appstring
--filterstringQuery filter in backend DSL form: col=value or col=op.value
--pageinteger
--per-pageinteger
--selectstringSelect columns, comma-separated
--sortstringSort columns, comma-separated; prefix with '-' for DESC
--tablestring

axhub data delete

행을 삭제해요.

플래그타입설명기본값
--appstring
--dry-runbooleantrue
--executeboolean
--idstring
--tablestring

axhub data get

단일 행을 조회해요.

플래그타입설명기본값
--appstring
--idstring
--tablestring

axhub data insert

행을 추가해요.

플래그타입설명기본값
--appstring
--batchstringJSONL file, one JSON object per line. Requests are throttled to <=200/min
--bodystringJSON object row body, e.g. '{"title":"x"}'
--dry-runbooleantrue
--executeboolean
--tablestring

axhub data list

행 목록을 조회해요.

플래그타입설명기본값
--appstring
--filterstringQuery filter in backend DSL form: col=value or col=op.value
--pageinteger
--per-pageinteger
--selectstringSelect columns, comma-separated
--sortstringSort columns, comma-separated; prefix with '-' for DESC
--tablestring

axhub data update

행을 수정해요.

플래그타입설명기본값
--appstring
--bodystringJSON object patch body, e.g. '{"status":"done"}'
--dry-runbooleantrue
--executeboolean
--idstring
--tablestring

axhub env

앱 환경변수를 관리해요.

axhub env delete

환경변수를 삭제해요.

플래그타입설명기본값
--appstring
--dry-runbooleantrue
--executeboolean
--keystring

axhub env get

환경변수를 조회해요.

플래그타입설명기본값
--appstring
--keystring

axhub env list

환경변수 목록을 봐요.

플래그타입설명기본값
--appstring

axhub env set

환경변수를 설정해요.

플래그타입설명기본값
--appstring
--from-stdinboolean
--keystring
--plainbooleanMark the value as plain. Mutually exclusive with --secret
--secretbooleanMark the value as a secret. Backend masks it on read (value=***) and encrypts at rest. When set, value positional arg is disallowed; use --from-stdin instead
--stagestringStage where this variable is available: build, runtime, or both
--valuestring

axhub env update

환경변수를 수정해요.

플래그타입설명기본값
--appstring
--from-stdinbooleanRead the new value from stdin. Mutually exclusive with both positional value and the legacy --value flag — passing more than one input shape is a usage error
--keystringEnv var key to update. Must already exist (otherwise ExitCode 5)
--plainbooleanMark as plain on update
--secretbooleanMark as secret on update
--stagestringStage where this variable is available: build, runtime, or both
--valuestringNew value, positional. Mirrors env set KEY VALUE so the two commands share a single argument shape. live-QA Gap C/E showed users hitting unexpected argument 'VALUE' because the only way to pass a value was the --value flag. --value stays as a backward-compatible alias (handler prefers positional when both are passed); pass through stdin with --from-stdin