forked from I2P_Developers/i2p.i2p
- Cherry-pick fixes from psi's github i2psnark_rpc branch - Fix up Jetty XML file for Jetty 8 - Start with JettyStart - Add UrlLauncher to launch browser - Move RunStandalone to standalone/ directory - Fix up paths in CSS files during build - Force startup delay to 0 when in router context - Fix theme selection when not in router context - Adjust CSS and image paths when not in router context - Add hosts.txt so announces work
9 lines
232 B
Bash
Executable File
9 lines
232 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# This launches i2psnark and jetty in a separate jvm.
|
|
# The file jetty-i2psnark.xml must be present in the current directory.
|
|
# i2psnark will be accessed at http://127.0.0.1:8002/
|
|
#
|
|
I2P="."
|
|
java -jar "$I2P/i2psnark.jar"
|