The entire UI was created with the help of CursorAI — an AI assistant in VSCode that made this possible, since I'm a DevOps engineer, not a frontend developer 😅
I did my best, but if you see anything that can be improved — any suggestions, feedback, or corrections are more than welcome! 🙌
This frontend is designed to work with the FaynoSync API, providing seamless service updates.
To install all necessary dependencies, run the following command:
yarn install
To start the project in development mode, use the command:
yarn dev
This will launch a local server, usually on port 3000. You can open it in your browser at http://localhost:3000.
To run in production mode, first build the project:
yarn build
Create a .env file in the root directory of the project and add the following environment variables:
VITE_API_URL=http://localhost:9000
VITE_PORT=3000
Alternatively, you can simply copy the .env.example file to .env:
cp .env.example .env
Then, add or modify the necessary environment variables if needed.
