Getting Started
Setup Skote
Skote is build with ASP.net Core 8 web app using Visual Studio 2022.
Prerequisites:
Please follow the below steps to install and setup all prerequisites:
-
Visual Studio
Make sure to have Visual Studio downloaded on your machine.
-
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
-
Gulp
Make sure to have the Gulp installed & running on your computer. If you already have installed gulp on run command
npm install -g gulp
from your terminal.npm install --global gulp-cli
-
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
After you finished with the above steps, you can run the following commands into the terminal/command prompt from the root directory (Skote_*/asp/ ) of the project to run the project locally or build for production use:
This would install all the required dependencies in the node_modules
folder.
yarn install
After you finished with the above steps, go to the root directory ( Asp/Admin/ ) of the project:
Command | Description |
---|---|
Open Solution file
|
Open Skote.sln file with Visual studio then compile the project and check it. |
Note
To change the theme of the project, make the necessary modifications in the SCSS (Sass) files.
After making the changes, go to the terminal and run the commands "yarn" and "gulp" to apply the changes.