mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-22 23:18:05 +03:00
51 lines
852 B
Plaintext
51 lines
852 B
Plaintext
node_modules
|
|
|
|
# Local env (templates are .env.example; setup copies them to .env)
|
|
.env
|
|
**/.env
|
|
|
|
your-pc
|
|
|
|
# ide stuffs
|
|
.idea
|
|
|
|
# i am un-ignoring this to make sure that vscode users get the right typescript version
|
|
# picked for them. Future typescript design decisions cause phantom type errors that
|
|
# don't exist on the version we actually compile for.
|
|
#
|
|
# .vscode
|
|
.vs
|
|
|
|
# PNPM noise
|
|
.pnpm-debug.log
|
|
.pnpm-store
|
|
|
|
# Compiled output
|
|
js
|
|
build
|
|
|
|
# Coverage
|
|
coverage
|
|
test-results
|
|
.nyc_output
|
|
|
|
# Vitest bench --outputJson (see Justfile-bench)
|
|
typescript/server/bench-results.json
|
|
|
|
*.tsbuildinfo
|
|
|
|
# legacy bootstrap flag
|
|
I_HAVE_BOOTSTRAPPED_OK
|
|
# new bootstrap flag
|
|
BOOTSTRAP_OK
|
|
# v3 bootstrap flag (omg)
|
|
_SETUP_OK
|
|
|
|
# Local debugging: `just db-schema` (see Justfile-db)
|
|
db/schema.sql
|
|
datasets/
|
|
|
|
# java/beatoraja-ir (Gradle)
|
|
java/**/.gradle
|
|
java/**/build.DS_Store
|