Currently deployed on Vercel here
The KU Blockchain Institute aims to promote blockchain technology education and adoption in the midwest, but what is blockchain? Essentialy, a blockchain is a permanent, decentralized, immutable ledger of transactions where blocks hold the transactions linked in a chain. We believe the inherent properties of this technology is the future of the internet, allowing communities to form where ownership does not come from a single entity.
- Clone the repository and open a terminal.
- Install the package manager yarn here if you don’t have it already.
- Install all package dependences using the command
yarn
. - Make all your changes on your own Git branch using
git checkout <yourFirstName>-branch
.- Example:
git checkout micah-branch
- Example:
- Set up the private .env file to hold secret keys. Reach out to a contributor for this information.
- Run
yarn dev
to start the development server.- Open http://localhost:3000 with your browser to see the result.
- Changes made in the code will be reflected immediately in the browser window.
- Test your changes in a production server. First, build the application using
yarn build
. - Run
yarn start
to start the production server with the built assets.- Open http://localhost:3000 with your browser to see the result.
- This is an optimized production build, not meant for making changes.
- Use
git add .
to stage all the files you’ve made changes to. - Commit your changes by using
git commit -m "<yourCommitMessag>"
.- Example:
git commit -m "changed bio and headshot for micah"
- Example:
- Create a pull request by going to the Github repository and requesting to merge into the main branch.