Installation
run npm init // make a new npm project
run npm i truffle
sudo cp ./node_modules/.bin/truffle /usr/bin // copy truffle to /usr/bin/
sudo cp ./node_modules /usr/bin //copy node_modules to /usr/bin/
truffle.js
module.exports = {
networks: {
development: {
host: "localhost",
port: 7545,
network_id: "5777", // use * to match any network id
from: "0x627306090abaB3A6e1400e9345bC60c78a8BEf57",
gas: 6000000
}
}
};