The frontend code of the new order app
The New Order DAO App is a frontend codebase for the New Order DAO’s decentralized application (Dapp). The Dapp can be accessed at https://dao.neworder.network/, and detailed documentation about the New Order DAO can be found on their gitbook page here. The New Order DAO welcomes contributors to their open-source app and provides support through their Discord server.
To set up and compile the New Order DAO App, follow these steps:
.env.local file and obtain the necessary contents from a current developer.$ git remote add upstream https://github.com/new-order-network/new-order-app-ui.git.$ nvm use.$ yarn install.$ yarn start. The app should be accessible at localhost:3000.To commit changes to the code, follow these steps:
$ git checkout -b <branch_name>.[ISSUE-TAG]/[ISSUE-NUMBER]-[A-MEANINGFUL-TITLE].$ git push origin <branch_name>.$ git add <file(s)> to stage the modified files.$ git commit -m "<descriptive_comment>".$ git checkout main; git pull upstream dev; git checkout <branch_name>; git merge dev.The New Order DAO App is a decentralized application that allows users to interact with the New Order DAO. It is an open-source project that welcomes contributors to participate in its development. The installation process involves forking and cloning the repository, setting up the necessary environment variables, and following specific Git workflow steps to commit and push changes.