Thank you very much for your purchase!

If you have any questions that are beyond the scope of this documentation, please feel free to email or contact us via my page.

Support Email: support@themesbrand.com

The zip file contains all js files integrated with Globing, however you need to perform following steps to run project locally.

Make sure to have the Python installed & running in your computer. If you already have installed Python on your computer, you can skip this step. Please use Python version 3 or if you are using Paython version 2 then make sure to run all the below commands with python insted of python3. If you are using Windows OS then please install using APP store.

Prerequisites

Please follow below steps to install and setup all prerequisites:

  • Python

    Make sure to have the Python installed & running in your computer. If you already have installed Python on your computer, you can skip this step. Please use Python version 3 or if you are using Paython version 2 then make sure to run all the below commands with python insted of python3.

    For windows
    • Download python from windows store
    • Select the Python's version to download.
    • Click on the Install Now
    • Installation in Process
    For Linux
    • sudo apt update
    • sudo apt install python3

  • Check Pip version

    py -m pip --version
    upgread pip
    py -m pip install --upgrade pip

  • Virtualenv

    Make sure to have the virtualenv installed globally & running on your computer. If you already have installed on your computer, you can skip this step.

    Virtualenv installation command for linux & mac os
    python3 -m pip install --user virtualenv
    Virtualenv installation command for Windows
    py -m pip install --user virtualenv

Installation
  • Install Prerequisites

    Make sure to have all above prerequisites installed & running on your computer

Command Description
python3 -m pip install --user virtualenv Create Virtual Environment on linux & mac OS
py -m pip install --user virtualenv Create Virtual Environment on Windows OS
source environment_name/bin/activate Activate Environment on Linux & mac OS
environment_name\Scripts\activate Activate Environment on Windows OS
python -m pip install Django Install Django on linux & mac OS
py -m pip install Django Install Django on Windows OS

After you finished with the above steps, you can run the following commands into the terminal / command prompt from the root directory of the project to run the project locally:

  • Database Connectivity
    Goto settings.py of main directory and update below settings.

    DATABASES = {
    	'default': {
    	'ENGINE': 'django.db.backends.#databaseservername#',
    	'NAME': 'Your Database Name',
    	'USER' : 'Database User Name',
    	'PASSWORD' : 'Your Password',
    	'HOST' : 'Write down Host',
    	'PORT' : 'Write down port',
    	}
    }
    

  • Run below command for database migration
    python manage.py migrate

  • To create a superuser run the below command
    python manage.py createsuperuser
    enter username Your Username
    enter your Email Address
    enter your Password
    enter your Password again

  • Run below command for run your project
    python manage.py runserver

  • To load static files
    Go to Lexa/setings.py and add following command:-
    STATIC_URL = '/static/'
    STATICFILES_DIRS = [os.path.join(BASE_DIR,'static')]

    python manage.py collectstatic

I have tried my best to have standards and modular structure while developing the theme. Following sections are explaining the theme File & Folder, Structure, CSS, js files Structure and plugins.

File & Folder Structure


Landing
 ├── account
 ├── globing
 ├── static
	├── css	
	├── fonts
	├── images
	├── scss
	└── js											
 ├── templates
	├── account
	├── index
	├── partials
 ├── db.sqlite3
 └── manage.py

Color mode


1) Primary(Red) Color

In order to have Default Color enabled, Go to Globing/static/js/app.js.
and update code color = "primary"; at line number 60.

2) Green Color

In order to have Default Color enabled, Go to Globing/static/js/app.js.
and update code color = "green"; at line number 60.

3) Light Blue Color

In order to have Default Color enabled, Go to Globing/static/js/app.js.
and update code color = "light-blue"; at line number 60.

4) Pink Color

In order to have Default Color enabled, Go to Globing/static/js/app.js.
and update code color = "pink"; at line number 60.

5) Purple Color

In order to have Default Color enabled, Go to Globing/static/js/app.js.
and update code color = "purple"; at line number 60.

6) Yellow Color

In order to have Default Color enabled, Go to Globing/static/js/app.js.
and update code color = "yellow"; at line number 60.

manage.py Structure


Once again thank you for purchasing the theme. I am always avaialble to help you. If you have any suggestion or feature to make it more better, I am requesting you to contact me, I'll try my best to add them in future updates.

Best,

- Themesbrand

v2.1.0 - 11 December 2023

  • Python version updated to 3.12.0.
  • Django version updated to 4.2.7.
  • Updated Bootstrap version to 5.3.2.
  • Fixed minor bugs.

Copyright 2023 Themesbrand.