This is the repository for the landing page site of hapro.
Hapro-site is the repository for the site located at hapro.cloud. This readme is created to guide you through how to develop and deploy the project.
This site is meant to serve as an entrypoint for people to sign up for an account to start using hapro. You can find the related repositories at the end of this readme.
Important
To install the project locally you will need to have pnpm installed. You can find a guide to install it here.
Once you have pnpm installed you can install the dependencies by running pnpm i. Congrats! You've installed the project.
Create a .env file in the root of the project and fill in the following variables:
POSTMARK_SERVER_TOKEN=<YOUR_POSTMARK_SERVER_TOKEN>
POSTMARK_RECEIVER_EMAIL=<YOUR_EMAIL_TO_RECIEVE_SIGNUPS>To run the project in development mode (used during development) you can simply run the following command in your terminal:
pnpm devIf you want to preview the production build you can run the following command in your terminal:
pnpm buildAfter the build successfully finishes you can preview it by running the following command:
pnpm start