Skip to content

Commit a674cb4

Browse files
author
FDB Dev Team
committed
Initial repository commit
0 parents  commit a674cb4

File tree

1,084 files changed

+390345
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,084 files changed

+390345
-0
lines changed

.gitignore

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# Build artifacts
2+
/bin/
3+
/lib/
4+
/packages/
5+
bindings/flow/bin/
6+
bindings/java/foundationdb-client*.jar
7+
bindings/java/foundationdb-tests*.jar
8+
bindings/java/fdb-java-*-sources.jar
9+
bindings/nodejs/build/
10+
bindings/nodejs/modules/
11+
packaging/msi/FDBInstaller.msi
12+
13+
# Generated source, build, and packaging files
14+
*.g.cpp
15+
*.g.h
16+
*.g.S
17+
*.g.asm
18+
*.pom
19+
bindings/go/src/fdb/generated.go
20+
bindings/java/pom*.xml
21+
bindings/java/src*/main/overview.html
22+
bindings/java/src*/main/com/apple/foundationdb/*Options.java
23+
bindings/java/src*/main/com/apple/foundationdb/StreamingMode.java
24+
bindings/java/src*/main/com/apple/foundationdb/MutationType.java
25+
bindings/java/src*/main/com/apple/foundationdb/ConflictRangeType.java
26+
bindings/java/src*/main/com/apple/foundationdb/FDBException.java
27+
bindings/nodejs/package.json
28+
bindings/python/fdb/fdb*options.py
29+
bindings/python/dist/
30+
bindings/python/setup.py
31+
bindings/python/MANIFEST
32+
bindings/ruby/lib/fdboptions.rb
33+
bindings/ruby/fdb.gemspec
34+
fdbclient/vexillographer/obj/
35+
fdbrpc/hgVersion*.h
36+
fdbrpc/libeio/config.h
37+
flow/hgVersion*.h
38+
generated.mk
39+
versions.h
40+
packaging/msi/FDBInstaller.wix*
41+
42+
# Intermediate build artifacts and dependencies
43+
*.class
44+
*.py[cod]
45+
*.sass-cache
46+
.ccache
47+
.deps/
48+
.objs/
49+
bindings/c/fdb_c.symbols
50+
bindings/go/build
51+
bindings/go/godoc
52+
bindings/java/.classstamp*
53+
bindings/java/classes*/
54+
bindings/java/javadoc*/
55+
bindings/nodejs/fdb_node.stamp
56+
bindings/nodejs/node_modules/
57+
58+
# Testing and logging
59+
bindings/nodejs/fdb_node*.log
60+
bindings/nodejs/npm-debug.log
61+
packaging/msi/*.log
62+
packaging/msi/obj
63+
simfdb
64+
tests/oldBinaries
65+
trace.*.xml
66+
67+
# Editor files
68+
*.iml
69+
*.opensdf
70+
*.sdf
71+
*.suo
72+
*.user
73+
.idea/
74+
.project
75+
.pydevproject
76+
.vscode
77+
FoundationDB.xcodeproj
78+
foundationdb.VC.db
79+
foundationdb.VC.VC.opendb
80+
ipch/
81+
82+
# Temporary and user configuration files
83+
*~
84+
*.orig
85+
*.rej
86+
*.swp
87+
.envrc
88+
.DS_Store
89+
temp/

0 commit comments

Comments
 (0)