This project is licensed under the terms of the GNU General Public License v3.0
# Install dependencies
npm install
# Install the hooks for husky
npm run prepare
# Don't forget to set your environment variables in the .env file!
npm run dev
Open up http://localhost:3000 and you should be ready to go!
Profiles created in Tools can also be saved to IPFS as well as to your Mongo database. You will need access to an IPFS server and will have to set the credentials in your environment variables file.
You can enable IPFS functionality by changing the configuration in the app/utils/settings.js
file:
export const settings = {
ipfsEnabled: true
};
Then save the file and restart/redeploy the app. To disable IPFS, set ipfsEnabled
back to false and restart/redeploy again.