mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-12 14:54:57 +00:00
1d6da99e8f
display last line on tx fix debugger call listen to source event only after jumping to the end keep track of last tx; add minimal debug feature; fix ast issue initial debugger apis & ui integration prevent crash when step is out of bounds; send all all available data in websocket add debugger commands fix line number tracking in editor; toggle breakpoints replace timeouts with callbacks add debugger manager & refactor refactor debugger api refactor cmd line debugger reduce debugger decoupling reduce debugger decoupling fix debug buttons trigger source update so api triggers ws event to update source location move locals and contracts vars to a json view improve debugger icons simplify debugger data update debug package add command handler to get a contract given a tx; update debugger so it can get a contract by its tx instead of tracking latest txs only update debugger package
60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
module.exports = {
|
|
// default applies to all environments
|
|
default: {
|
|
enabled: true,
|
|
ipfs_bin: "ipfs",
|
|
provider: "ipfs",
|
|
available_providers: ["ipfs"],
|
|
upload: {
|
|
host: "localhost",
|
|
port: 5001
|
|
},
|
|
dappConnection: [
|
|
{
|
|
provider:"ipfs",
|
|
host: "localhost",
|
|
port: 5001,
|
|
getUrl: "http://localhost:8080/ipfs/"
|
|
}
|
|
]
|
|
// Configuration to start Swarm in the same terminal as `embark run`
|
|
/*,account: {
|
|
address: "YOUR_ACCOUNT_ADDRESS", // Address of account accessing Swarm
|
|
password: "PATH/TO/PASSWORD/FILE" // File containing the password of the account
|
|
},
|
|
swarmPath: "PATH/TO/SWARM/EXECUTABLE" // Path to swarm executable (default: swarm)*/
|
|
},
|
|
|
|
// default environment, merges with the settings in default
|
|
// assumed to be the intended environment by `embark run`
|
|
development: {
|
|
enabled: true,
|
|
provider: "ipfs",
|
|
upload: {
|
|
host: "localhost",
|
|
port: 5001,
|
|
getUrl: "http://localhost:8080/ipfs/"
|
|
}
|
|
},
|
|
|
|
// merges with the settings in default
|
|
// used with "embark run privatenet"
|
|
privatenet: {
|
|
},
|
|
|
|
// merges with the settings in default
|
|
// used with "embark run testnet"
|
|
testnet: {
|
|
},
|
|
|
|
// merges with the settings in default
|
|
// used with "embark run livenet"
|
|
livenet: {
|
|
},
|
|
|
|
// you can name an environment with specific settings and then specify with
|
|
// "embark run custom_name"
|
|
//custom_name: {
|
|
//}
|
|
};
|