mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
ea2fd093d5
* Add documentation * Add janusgraph custom configuration. Simply graph creation. * Add properties to edges. Index on uri property. * reformat * Create libpng graph in a more reasonable amount of time. * Update README.md * Wrap indexing into function * updating... * update proto * fix command * Update settings for serve and processing indexing * Add dockerfile to docker container * Add trigger script * Fix error with loading graphml file * reformat * Remove resource constraints for program model * Change permissions of temp dir * Update readme * Update dockerignore --------- Co-authored-by: Evan Downing <2077950+evandowning@users.noreply.github.com>
17 lines
404 B
Groovy
17 lines
404 B
Groovy
// We need to configure the console to have state:
|
|
// https://tinkerpop.apache.org/docs/current/reference/#console-sessions
|
|
:remote connect tinkerpop.server conf/remote.yaml session
|
|
:remote console
|
|
|
|
// 1 hour in milliseconds
|
|
:remote config timeout 3600000
|
|
|
|
println("Starting graph creation...")
|
|
|
|
g.io('/crs_scratch/graph.xml').read().iterate()
|
|
|
|
println("Graph creation complete.")
|
|
|
|
:remote console
|
|
:exit
|