Real-time temperature, humidity and air pressure monitoring immutably stored on Hedera; ensuring full transparency and trust.
- More information: Pitch Deck or Demo Video
- Website: trusense.africa
- Login credentials can be found in the private DoraHacks BUIDL details.
- Web server repository: TruSense Web Server
- Device code: /sensor
Team
- louweal
- Hashgraph Certificate: hashgraph-certificate.pdf
- Clone and install dependencies
npm i- Set environment variables
HEDERA_NETWORK="testnet"
NODE_ENV="development"
DATABASE_URL="postgresql://..."
JWT_SECRET="<just put a random string here>"
- Push schema to database
npx prisma db push
- Start the development server
npm run devThe application will be available at http://localhost:3000
├── assets/css/ # Global styles
├── components/ # Vue components
├── composables/ # Vue composables
├── lib/ # Utilities and services
├── middleware/ # Nuxt middleware
├── pages/ # File-based routing
├── prisma/ # Database schema
├── public/ # Public files
├── sensor/ # Sensor code (for reference)
├── server/api/ # API routes
├── app.vue # Root component
└── nuxt.config.ts # Nuxt configuration