This is a Flask-based web application for selling digital products.
-
Clone the repository:
git clone <repository_url> cd digital_product_app_directory_name # Or whatever the repo is called
-
Create a virtual environment (recommended):
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install dependencies:
pip install -r requirements.txt
-
Run the application:
python digital_product_app/app.py
The application will be available at
http://127.0.0.1:5000/.
digital_product_app/: Main application directory.app.py: Core Flask application logic.templates/: HTML templates.index.html: Basic landing page.
static/: Static files (CSS, JavaScript, images).
requirements.txt: Project dependencies.README.md: This file.