Skip to content

A dapp to manage organizations and projects using truffle react-auth as a starting point

Notifications You must be signed in to change notification settings

clifer/eth-project-manager

 
 

Repository files navigation

Authenticate, Manage Profile, Organizations and Projects, Solidity, React, Redux and Authentication

Using Solidity, Webpack and React, this DAPP builds on Truffle's react-auth box. A great starting point for building your own project management system.

Installation

  1. Install Truffle globally.

    npm install -g truffle
  2. Clone the repository.

    git clone https://github.com/clifer/eth-project-manager.git
  3. Install the node modules

    npm install
  4. Run the development console.

    truffle develop
  5. Compile and migrate the smart contracts. Note inside the development console we don't preface commands with truffle.

    compile
    migrate
  6. Run the webpack server for front-end hot reloading (outside the development console). Smart contract changes must be manually recompiled and migrated.

    // Serves the front-end on http://localhost:3000
    npm run start
  7. Truffle can run tests written in Solidity or JavaScript against your smart contracts. Note the command varies slightly if you're in or outside of the development console.

    // If inside the development console.
    test
    
    // If outside the development console..
    truffle test
  8. Jest is included for testing React components. Compile your contracts before running Jest, or you may receive some file not found errors.

    // Run Jest outside of the development console for front-end component tests.
    npm run test
  9. To build the application for production, use the build command. A production build will be in the build_webpack folder.

    npm run build

TODO

  • Add page to update Orgs
  • Add Project contract and supporting pages
  • Add Orgs and Projects to Dashboard
  • Create Token

FAQ

  • How do I use this with the EthereumJS TestRPC?

    It's as easy as modifying the config file! Check out the Truffle documentation on adding network configurations. Depending on the port you're using, you'll also need to update line 34 of src/util/web3/getWeb3.js.

  • Why is there both a truffle.js file and a truffle-config.js file?

    truffle-config.js is a copy of truffle.js for compatibility with Windows development environments. Feel free to it if it's irrelevant to your platform.

  • Where is my production build?

    The production build will be in the build_webpack folder. This is because Truffle outputs contract compilations to the build folder.

  • Where can I find more documentation about Truffle?

    This DAPP uses Truffle and a React Authentication setup created with react-auth. This would be a great place to start!

About

A dapp to manage organizations and projects using truffle react-auth as a starting point

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 95.3%
  • CSS 3.3%
  • HTML 1.4%