tix
A nix type checker/lsp
파일 탐색기
최종 버전 다운로드 (.zip)- pre-commit
- ci.yml
- docs.yml
- settings.json
- check.rs
- config.rs
- gen_stubs.rs
- init.rs
- json_output.rs
- main.rs
- timing.rs
- custom_stubs.rs
- env_stubs.rs
- nixpkgs_lib.rs
- Cargo.toml
- collect.rs
- collect_shared.rs
- comment.pest
- lib.rs
- tix_collect.rs
- tix_decl.pest
- tix_parser.rs
- Cargo.toml
- arbitrary.rs
- ast_utils.rs
- classify.rs
- comment.rs
- lib.rs
- lower.rs
- nameres.rs
- narrow.rs
- tests.rs
- Cargo.toml
- mod.txt
- stub_compose.txt
- cyclic.rs
- frozen.rs
- let_bridged_export.rs
- mod.rs
- partial.rs
- stub_compose.rs
- type_ops.rs
- aliases.rs
- builtins.rs
- collect.rs
- constrain.rs
- coordinator.rs
- diagnostic.rs
- file_graph.rs
- imports.rs
- infer.rs
- infer_expr.rs
- lib.rs
- narrow.rs
- operators.rs
- storage.rs
- tests.rs
- type_table.rs
- Cargo.toml
- arbitrary.rs
- arc_ty.rs
- arena.rs
- attrset.rs
- disjoint.rs
- lib.rs
- primitive.rs
- simplify.rs
- Cargo.toml
- code_actions.rs
- completion.rs
- config.rs
- convert.rs
- diagnostics.rs
- document_highlight.rs
- document_link.rs
- document_symbol.rs
- formatting.rs
- goto_def.rs
- hover.rs
- import_nav.rs
- inlay_hint.rs
- lib.rs
- pbt.rs
- pbt_stubs.rs
- project_config.rs
- references.rs
- rename.rs
- selection_range.rs
- semantic_tokens.rs
- server.rs
- signature_help.rs
- state.rs
- store_stubs.rs
- test_util.rs
- ty_nav.rs
- type_def.rs
- warmup.rs
- workspace_symbols.rs
- mod.rs
- e2e_background_analysis.rs
- e2e_code_actions.rs
- e2e_completion.rs
- e2e_config.rs
- e2e_diagnostics.rs
- e2e_document_highlight.rs
- e2e_document_links.rs
- e2e_document_symbols.rs
- e2e_formatting.rs
- e2e_goto_def.rs
- e2e_goto_type_def.rs
- e2e_hover.rs
- e2e_inlay_hints.rs
- e2e_lifecycle.rs
- e2e_multi_file.rs
- e2e_nixpkgs.rs
- e2e_references.rs
- e2e_rename.rs
- e2e_selection_range.rs
- e2e_semantic_tokens.rs
- e2e_signature_help.rs
- e2e_workspace_symbols.rs
- Cargo.toml
- diff.rs
- git.rs
- main.rs
- manifest.rs
- results.rs
- runner.rs
- tix.rs
- Cargo.toml
- INTERNALS.md
- narrowing-design.md
- e001.md
- e002.md
- e003.md
- e004.md
- e005.md
- e006.md
- e007.md
- e008.md
- e009.md
- e010.md
- e011.md
- e012.md
- e013.md
- e014.md
- e015.md
- index.md
- annotations.md
- configuration.md
- cross-file-types.md
- getting-started.md
- internals.md
- introduction.md
- limitations.md
- lsp.md
- quick-start.md
- stubs.md
- SUMMARY.md
- type-system.md
- book.toml
- generate-stubs-runtime.nix
- lsp-local.nix
- overlay.nix
- rust.nix
- scripts.nix
- stubs.nix
- vscode.nix
- cov.sh
- gen_lib_stubs.py
- pbt.sh
- home-manager.tix
- nixos.tix
- lib.tix
- barrel.nix
- default.nix
- lib.nix
- main.nix
- other.nix
- default.nix
- audio.nix
- programs.nix
- shell.nix
- gaming.nix
- home-manager.tix
- nixos.tix
- tix.toml
- bwrap.nix
- network.nix
- narrow_null_guard.nix
- null_default_call.nix
- null_default_lib.nix
- null_interp_call.nix
- null_interp_lib.nix
- null_tostring_call.nix
- null_tostring_lib.nix
- app.nix
- config.nix
- multi_export.nix
- operators.nix
- package.nix
- scope.nix
- typeof_import.nix
- ascii-table.nix
- basic.nix
- basic_let.nix
- hasattr_narrowing.nix
- ignore.nix
- inherit_from.nix
- jump.nix
- merge.nix
- mutual.nix
- nesting.nix
- nixos_inline.nix
- nixos_module.nix
- nocheck.nix
- null.nix
- null_default.nix
- overload.nix
- rec.nix
- rec_fun.nix
- row_poly.nix
- row_poly_deeper.nix
- scratch.nix
- shell_scripts.nix
- simple.nix
- strings.nix
- stubs_test.nix
- tix.toml
- type_error.nix
- union_if_else.nix
- bugs.md
- check_findings.md
- lsp.md
- performance.md
- source-loc.md
- stringable.md
- stubs-and-dx.md
- testing-ideas.md
- testing.md
- type-system-design.md
- extract-options.nix
- .envrc
- .gitignore
- Cargo.lock
- Cargo.toml
- CLAUDE.md
- default.nix
- flake.lock
- flake.nix
- justfile
- LICENSE
- README.md
- repo-check.toml
- rust-toolchain.toml
- SESSION.md
- tix.toml
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/JRMurr/tix
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd tix
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. Rust
보통 추천사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Rust (rustup) rustup으로 설치하면 cargo도 함께 설치됩니다.
cargo build --release
Rust 프로젝트를 컴파일합니다.
cargo run
빌드 후 바로 실행까지 진행합니다.
cargo build가 에러 없이 끝나면 성공입니다. target/ 폴더에 실행 파일이 생성됩니다.
// repository documentation
Was this content helpful?
(0 ratings)
