This guide provides instructions on setting up the development environment for [Your Project Name] using Electron with Vite.
Before you start, ensure that you have the following installed on your machine:
Please checkout the api for connecting to the server built for this application before development Server
-
Clone the repository to your local machine:
bash git clone https://github.com/RyanLarge13/Electron-Notes.git -
Navigate to your project directory
cd your-project
- Install deps
npm install
- Start the dev server
npm run dev
- Build your project
npm run build:<OS>
This command will generate optimized production-ready files in the dist directory.
npm run lint: Lint the project files. npm run test: Run tests if applicable.
For debugging purposes, you can use the following commands:
npm run inspect: Run the application in inspect mode. npm run debug: Start the application with the Node.js debugger.
If you're interested in contributing to the project, please refer to the Contributing Guidelines.
Happy coding!
Make sure to adjust the URLs, paths, and commands according to your actual project structure and needs. If there are additional setup steps or specific configuration required for Electron with Vite in your project, you may want to include those details in this guide as well.