🚀Quick Start
Setup the Light Able using Gulp workflow
Welcome to the Light Able NodeJS Admin, your go-to foundation for building powerful web applications with Express.JS, EJS, NodeJS and Bootstrap 5.0. This guide will walk you through the steps to set up and start us
Prerequisites
Before you begin, make sure you have the following installed on your machine:
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.
A code editor of your choice (e.g., Visual Studio Code, Atom, Sublime Text)
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.
You can use Gulp to Automate and enhance your project workflow.
Build Assets
Before running the application we need to build theme assets:
Open your project to vs code.
Start a command prompt window or terminal and change directory to Lightable-Node/
Install packages using one of following commands
This command will fetch all dependencies listed in /package.json
and place them into/node_modules
folder.
You can use Gulp command to bundle theme assets. The below command will compile all the assets(sass, js, media) to
/public/assets
folder:
Setting Up Environment Variables
Create .env file in root directory of project and add following code:-
Run Project
To run the Nodejs application navigate your prompt to project
folder and run the following command. This command will listen for changes and hot reload them.
Keep your prompt running by default application is served on port 8000
Enjoy your development with Light Able
Last updated