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

Qexal - Django is a multi purpose landing page template built for any app development, agency or business. It’s fully responsive and built with bootstrap v5.3.2. You will be easily able to customize it for your needs.

Please feel free to get back to me in case if you are having any question or feedback.

I have tried to follow the standards and modular structure while developing the theme. Following sections are explaining the theme File & Folder, structure, html file struture and plugins.

File & Folder Structure


├── Landing
	├── account
	├── qexal
	├── static
		├── css
		├── images
		├── fonts
		├── js
		├── php
		├── scss
	├── templates
	├── db.sqlite3
	├── manage.py

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 instead 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

  • Install Prerequisites

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

Command Description
python3 -m venv env_name Create Virtual Environment on linux & mac OS
python -m venv env_name 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
pip3 install django Install Django on linux & mac OS
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
For Windows: python manage.py migrate
For Linux: python3 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
For Windows: python manage.py runserver
For Linux: python3 manage.py runserver

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

python manage.py collectstatic

CSS


Files are explained below:

File Description
bootstrap.min.css Qexal uses the bootstrap v5.3.2. The core bootstrap file is being used in all the pages.
style.css This file is containing all common styles for all the pages.

Javascript


Files are explained below:

File Description
app.js This is a main js file.

We've used the following resources as listed. These are some awesome creation and we are thankful to the community.

Once again thank you for your purchase. I'll be happy to answer the the questions you have related to the theme. In case if you have any suggestion or feature, request please feel free to contact me, I'll try to implement it and will release as part of future updates.

Stay Awesome!

- Themesbrand

Version v2.1.0     25 Nov 2023

  • Django version updated to 4.2.7
  • Django version updated to 3.12.0
  • Bootstrap version updated to 5.3.2
  • Minor bug fixes

Version v2.0.0     20 August 2023

  • Django version updated to 4.2.4
  • Python version updated to 3.11.4
  • Bootstrap version updated to 5.3.0
  • Minor bug fixes

Version v1.0.0     21 April 2021

  • Initial released

Copyright © 2023 Themesbrand.