Skip to content

Instantly share code, notes, and snippets.

@maraoz
Last active July 25, 2016 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maraoz/a004a0d8f318da0239ebf09b4fbc6a00 to your computer and use it in GitHub Desktop.
Save maraoz/a004a0d8f318da0239ebf09b4fbc6a00 to your computer and use it in GitHub Desktop.
# First, let's install truffle
$ sudo npm install -g truffle
# let's setup our project
$ mkdir solidity-experiments
$ cd solidity-experiments/
$ truffle init
$ ls
app contracts migrations test truffle.js
# app/ is the directory where your application files go.
# contracts/ - directory where Truffle expects to find solidity contracts.
# migrations/ - directory to place scriptable deployment files.
# test/ - location of test files for testing your application and contracts.
# truffle.js - Truffle configuration file.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment