This repository hosts the primary codebase for the Minsta app.
Tooling:
Author:
This repository hosts the primary codebase for the Minsta App, originally created and developed by @microchipgnu.
All new Minsta instances should be derived from this repository.
To start with this project:
-
Clone the repository.
-
If you don't have
pnpm
installed, run:npm install -g pnpm
-
Then, install the required dependencies:
pnpm install
Refer to the .env.example file for the environment variables used in this project.
If you don't set up a .env
file or environment variables with your provider, the project will retrieve values from the following files:
- For CSS generation during build:
generate-css.js
- For configuration variables:
src/constants.ts
- For fallback metadata and text values:
src/fallback.ts
To run the project locally, use:
pnpm dev
If you're running your project locally, follow these steps to update your environment variables:
- Save your changes in the
.env
file. - Run
pnpm dev
again to apply the updated environment variables. - Reload the page to reflect the changes.
If you have deployed your project on Vercel, follow these steps to update your environment variables:
- Log in to your Vercel account.
- Navigate to the project settings for your deployed app.
- Update the environment variables in the Vercel dashboard.
- Trigger a redeployment of your app to apply the changes.
By following these steps, you can ensure that your project uses the updated environment variables.