21 lines
675 B
Python
21 lines
675 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
"""Enable dev default config"""
|
||
|
|
||
|
import json
|
||
|
|
||
|
conf = json.load(open('static-data/default_config.json', 'r'))
|
||
|
|
||
|
if input("Reuse Tor? y/n:").lower() == 'y':
|
||
|
conf['tor']['use_existing_tor'] = True
|
||
|
conf['tor']['existing_control_port'] = int(input("Enter existing control port:"))
|
||
|
conf['tor']['existing_control_password'] = input("Tor pass:")
|
||
|
conf['tor']['existing_socks_port'] = int(input("Existing socks port:"))
|
||
|
|
||
|
conf['general']['dev_mode'] = True
|
||
|
conf['general']['insert_deniable_blocks'] = False
|
||
|
conf['general']['general.random_bind_ip'] = False
|
||
|
|
||
|
json.dump(conf, open('static-data/default_config.json', 'w'), sort_keys=True, indent=4)
|
||
|
|