Skip to content

Samshh/ChainMed-Website

Repository files navigation

happ3n ICP HACKATHON PROJECT

Fullstack dApp (Azle + Express + NextJS + ICP)

This boilerplate is designed to easily build 100% descentralized fullstack web applications on ICP.

Features

  • Build REST API on chain
  • Persist SQL database on chain
  • Deploy NextJS apps on chain
  • Connect frontend to backend using ICP Identities

Stack

  • Azle - Backend server to serve ExpressJS apps on chain
  • TypeORM - ORM currently working with sql.js
  • Ares - Frontend and Backend ICP Connector
  • NextJS - Frontend Framework
  • Tailwind - CSS Framework

Run Locally

Clone the project

  git clone https://github.com/happ3n-philippines/happ3n.git

Go to the project directory

  cd happ3n

Install dependencies

npm install

Create a .env file:

# Create .env file
cp frontend/.env-example frontend/.env

Start a ICP local replica:

dfx start --background --clean

Get your canister ids:

# Create canisters
dfx canister create --all

# Get backend canister id
dfx canister id backend

# Get internet-identity canister id
dfx canister id internet-identity

Your .env file should look something like this:

# Replace BACKEND_CANISTER_ID with your backend canister id
NEXT_PUBLIC_API_REST_URL=http://BACKEND_CANISTER_ID.localhost:4943
# Replace INTERNET_IDENTITY_CANISTER_ID with your internet-identity canister id
NEXT_PUBLIC_INTERNET_IDENTITY_URL=http://INTERNET_IDENTITY_CANISTER_ID.localhost:4943

Deploy your canisters:

dfx deploy

You will receive a result similar to the following (ids could be different four you):

URLs:
  Frontend canister via browser
    frontend: http://127.0.0.1:4943/?canisterId=be2us-64aaa-aaaaa-qaabq-cai
  Backend canister via Candid interface:
    backend: http://127.0.0.1:4943/?canisterId=bd3sg-teaaa-aaaaa-qaaba-cai&id=bkyz2-fmaaa-aaaaa-qaaaq-cai

Open your web browser and enter the Frontend URL to view the web application in action.

Test frontend without deploy to ICP Replica

Comment the next line into frontend/next.config.mjs file:

// output: "export",

Then, navitate to frontend folder:

cd frontend

Run the following script:

npm run dev

Hackathon-Project---The-Launchpad

About

Blockchain - ICP

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages