Evohus is a modern and flexible Flask Real Estate Admin Dashboard built with Flask, Bootstrap 5, Vite, and Yarn. This guide will help you quickly set up and start your development environment.
Approx Read Time: 5 Min
Step 1: Download the Package
Step 2: Unzip the file
Evohus_Flask_v1.0.0 folder.Step 3: Install Node.js and yarn (if not already installed)
Node.js and npm (Node Package Manager) are installed on your system. Make sure to use node version 24.*.Step 4: Install Node Modules
Evohus_Flask_v1.0.0/Admin folder.$ yarn
Step 5: Create Production Build
$ yarn run build
This command compiles and optimizes your assets, creating a distribution folder (/dist) that contains minified and ready-to-deploy files. It ensures your project is optimized for performance in a production environment.
Step 6: Installation Flask
Python and pip(Python Package Manager) are installed on your system. Make sure to use pip's latest version.:$ python --version
Python 3.14.2
If you find that you do not have Python installed on your computer, then you can download it for free from the following website: https://www.python.org/.
$ pip --version
$ pip --version
pip 26.0 from C:\Python314\lib\site-packages\pip (python 3.14)
If you do not have PIP installed, you can download and install it from this page: https://pypi.org/project/pip/.
$ python -m venv virtual_env
$ python -m venv virtual_env
$ virtual_env\Scripts\activate.bat
$ source virtual_env/bin/activate
$ (virtual_env) C:\Users\Your Name>
$ (virtual_env) ... $
$ pip install -r requirements.txt
$ py main.py