-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
84 lines (79 loc) · 1.75 KB
/
Copy path.gitignore
File metadata and controls
84 lines (79 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Python virtual env / cache
.venv/
.venv-wsl/
__pycache__/
*.pyc
*.pyo
*.pyd
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Local editor / OS files
.vscode/
.idea/
.DS_Store
Thumbs.db
.npmrc
.env
# Local runtime state and ad-hoc test data
human_test/
smoketest_state/
onion_smoketest_state/
tmp_*/
tmp*/
*_invite.json
peerb_invite_live.json
scripts/wsl_fly_smoke_test.sh
scripts/region_cutover_test.ps1
# Build and packaging artifacts
build/
!onionrelay_src/scripts/build/
!onionrelay_src/scripts/build/combine_libs
dist/
rust/target/
release/
*.log
*.tar.gz
*.zip
bindings/javascript/node_modules/
bindings/javascript/package-lock.json
bindings/javascript/native/*
!bindings/javascript/native/.gitkeep
bindings/javascript/onionrelay/**
!bindings/javascript/onionrelay/.gitkeep
bindings/python/*.egg-info/
bindings/python/build/
bindings/python/dist/
bindings/python/p4_core/native/**
!bindings/python/p4_core/native/__init__.py
!bindings/python/p4_core/native/.gitkeep
bindings/python/p4_core/onionrelay/**
!bindings/python/p4_core/onionrelay/.gitkeep
bindings/python_legacy/*.egg-info/
bindings/python_legacy/build/
bindings/python_legacy/dist/
bindings/java/target/
bindings/php/vendor/
bindings/cpp/build/
tmp_python_sdk_dist/
composer.lock
# Onionrelay build outputs (keep source, ignore compiled artifacts)
onionrelay_src/src/app/onionrelay
onionrelay_src/src/app/onionrelay*
onionrelay_src/src/app/*.exe
onionrelay_src/src/app/*.dll
onionrelay_src/src/app/*.so
onionrelay_src/src/app/*.so.*
onionrelay_src/src/app/*.dylib
onionrelay_src/lib*.a
onionrelay_src/config.log
onionrelay_src/config.status
onionrelay/**
!onionrelay/.gitkeep
# Fly.io test app artifacts (kept local only for WAN testing)
fly_test_app/
fly.toml
Procfile
.dockerignore
.github/workflows/fly-deploy.yml