-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(graph): adds Dockerfile and docker-compose.yaml
- Loading branch information
Showing
11 changed files
with
1,170 additions
and
305 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
.git | ||
|
||
################################################## | ||
### Below is the same as .gitignore | ||
################################################## | ||
|
||
# build artefacts | ||
packages/*/*/lib | ||
packages/*/*/lib-commonjs | ||
packages/*/*/.parcel-cache | ||
packages/*/*/dist | ||
packages/*/*/coverage | ||
|
||
# lock-files that don't belong here | ||
package-lock.json | ||
yarn.lock | ||
npm-shrinkwrap.json | ||
shrinkwrap.json | ||
|
||
# Metadata | ||
tsdoc-metadata.json | ||
|
||
# Logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Runtime data | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
bower_components | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (https://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# dotenv environment variables files | ||
.env | ||
# direnv | ||
.envrc | ||
|
||
# next.js build output | ||
.next | ||
|
||
# OS X temporary files | ||
.DS_Store | ||
|
||
packages/*/*/temp | ||
# Heft | ||
.heft | ||
|
||
# Pact command history | ||
.pact-history | ||
|
||
# Intelij idea files | ||
.idea | ||
.idea/* | ||
|
||
# Turborepo | ||
.turbo | ||
|
||
# Storybook static build | ||
storybook-static | ||
|
||
temp | ||
|
||
#Playwright | ||
/packages/*/*/test-results | ||
/packages/*/*/playwright-report | ||
/packages/*/*/blob-report | ||
# cache-sh | ||
.cache-sh | ||
|
||
# parcel | ||
.parcel-cache |
Oops, something went wrong.