Before running this Web3 Flask application, ensure you have the following installed on your system:
- Python (3.x recommended)
- pip (Python package installer)
- virtualenv (for creating isolated Python environments)
- PHP (for import/export feature)
- Composer (for import/export feature)
-
Install virtualenv (if not installed): Open Command Prompt and run:
pip install virtualenv
-
Install PHP and Composer:
- Download PHP from php.net.
- Install Composer by following the instructions on getcomposer.org.
-
Clone the repository:
git clone repository cd repository
-
Install PHP dependencies for excelinterop: Navigate to the
excelinterop
directory and run:cd excelinterop composer install cd ..
-
Create a new virtual environment:
venv env
-
Activate the virtual environment:
.\env\Scripts\activate
-
Install Python dependencies:
pip install -r requirements.txt
-
Configure environment variables: Create a
.env
file in the root directory of the project and add the required variables. You can use the provided.env.example
file as a reference:cp .env.example .env
-
Run the application:
python main.py
-
Access the application in your web browser at
http://127.0.0.1:5000
.
-
Install virtualenv (if not installed): Open Terminal and run:
pip3 install virtualenv
-
Install PHP and Composer:
- Download PHP from php.net.
- Install Composer by following the instructions on getcomposer.org.
-
Clone the repository:
git clone https://github.com/ManasMadan/c4gt-website.git cd c4gt-website
-
Install PHP dependencies for excelinterop: Navigate to the
excelinterop
directory and run:cd excelinterop composer install cd ..
-
Create a new virtual environment:
python3 -m venv env
-
Activate the virtual environment:
source env/bin/activate
-
Install Python dependencies:
pip3 install -r requirements.txt
-
Configure environment variables: Create a
.env
file in the root directory of the project and add the required variables. You can use the provided.env.example
file as a reference:cp .env.example .env
-
Run the application:
python3 main.py
-
Access the application in your web browser at
http://127.0.0.1:5000
.
- If you encounter any issues during installation or execution, please refer to the official documentation for Flask and ensure all prerequisites are correctly installed.