Getting Started
Setup Skote
Prerequisites:
Please follow the below steps to install and setup all prerequisites:
-
Nodejs
Make sure to have Node.js installed & running on your computer. If you already have installed Node on your computer, you can skip this step if your existing node version is greater than 18. We suggest you to use LTS version of Node.js.
-
Yarn
Make sure to have the Yarn installed & running on your computer. If you already have installed Yarn on your computer, you can skip this step. We suggest you use Yarn instead of NPM.
npm install --global yarn
-
Git
Make sure to have Git installed globally & running on your computer. If you already have installed git on your computer, you can skip this step.
To install in Linux OS please run the below commands.sudo apt-get update sudo apt-get install git
Once you've completed the preceding steps, you can execute the following commands in the terminal or command prompt from the root directory of Skote. This will either run the project locally or build it for production use:
This would install all the required dependencies in the node_modules
folder.
yarn install or yarn
Runs the project locally, starts the development server and watches for any changes in your code. The development server is accessible at http://localhost:3000.
yarn start
Generates a /build
directory with all the production files.
yarn build
This would install all the required dependencies in the node_modules
folder.
yarn install or yarn
Runs the project locally, starts the development server and watches for any changes in your code. The development server is accessible at http://localhost:5173.
yarn run dev