This is a Connect IPS Core Module integration in Next.js.
First, clone the repository
# SSH
git clone git@github.com:greyhere/next-connectips.git
# HTTPS
git clone https://github.com/greyhere/next-connectips.git
Install dependencies:
npm install
# or
yarn
# or
pnpm install
Generate a .env.local
file resembling .env.example
and fill it with the provided Connect IPS details, as instructed in .env.example
.
cp .env.example .env.local
Add your CREDITOR.pfx
private key file provided by Connect IPS to the signatures
directory.
Run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
Check out Next.js deployment documentation for more details.