forked from cerc-io/snowballtools-base
### TL;DR Removed the dependency on `react-hot-toast` in favor of a custom implementation for toast notifications. ### What changed? 1. Removed `react-hot-toast` from `package.json` and `yarn.lock`. 2. Updated `EnvironmentVariables` and `Config` to use the custom toast notification system. ### Why make this change? To reduce bundle size and have more control over the toast notification system. ### How to test? 1. Navigate to the Environment Variables settings for a project. Try adding and removing environment variables to see the new toast notifications in action. 2. Navigate to the Domains settings for a project and try adding a new domain to view the custom toast notifications. ---
frontend
This is a vite react nextjs project in a yarn workspace.
Getting Started
Install dependencies
In the root of the project, run:
yarn
Build backend
yarn build --ignore frontend
Environment variables
Local
Copy the .env.example file to .env:
cp .env.example .env
Staging environment variables
Change in deployer/deploy-frontend.staging.sh
Production environment variables
Change in deployer/deploy-frontend.sh
Run development server
yarn dev
Deployment
From the root of the project, run:
Staging
cd packages/deployer && ./deploy-frontend.staging.sh
Production
cd packages/deployer && ./deploy-frontend.sh
Deployment status
Check the status of the deployment here