Welcome to HexaDash! This app helps you to build modern applications for the web, mobile, or desktop.
For getting started you needs two things as Prerequisites.
Prerequisites
Before you begin, make sure your development environment includes Node and an npm package manager.
Node.js
Download NodeJs Recommended version 16.18.0 from nodejs.org.
Install Node.js using downloaded file
To check your node version, run node -v in a terminal/console window.
Yarn package manager
Svelte and Sveletkit apps depend on features and functionality provided by libraries that are available as yarn packages. To download and install yarn packages, you must have an yarn package manager. This Quick Start uses the yarn client command line interface, which is need install by using npm, npm default with nodejs. To install yarn, run npm install -g yarn To check that you have the yarn client installed, run yarn -v in a terminal/console window.
For better understanding we suggest you to once go through official documentation of Svelte and Sveltekit.
Downloaded Files
After extract the main zip file, go to HexaDash folder and you will get all the necessary files there with documentation.
Installation
- For starter we need to setup node js, go to https://nodejs.org/en/download/ & download appropriate version for your os.
- After download setup nodejs
- Run npm install -g yarn, wait a bit
- Run yarn install, wait a bit
- Now run yarn dev, it should open up localhost on your browser
Make sure you are not running any other project in local if so then use new generated port from terminal with label called app running at:
Some Common solution if you do not run project successfully
Remove node_module and package-lock.json and yarn-lock file and again do yarn install
You can again download theme from themeforst and then again run
Then also if you don't solve issue you can generate a ticket.
Application Deployment
Before you can deploy your SvelteKit app, you need to adapt it for your deployment target. Adapters are small plugins that take the built app as input and generate output for deployment.
By default, projects are configured to use @sveltejs/adapter-auto, which detects your production environment and selects the appropriate adapter where possible. If your platform isn't (yet) supported, you may need to install a custom adapter or write one.
See the adapter-auto README for information on adding support for new environments.
Supported environments
SvelteKit offers a number of officially supported adapters.
You can deploy to the following platforms with the default adapter,
adapter-auto:
Plese follow Official Deplyment Guide for more detials