A web application for a clothing store built with Flask.
- Python 3.x
- Flask
-
Clone the repository:
git clone <repository_url>
-
Navigate to the project directory:
cd flask_toko_baju-main -
Create and activate a virtual environment (recommended):
python -m venv venv # On Windows: venv\Scripts\activate # On macOS/Linux: source venv/bin/activate
-
Install the required dependencies:
pip install flask # If a requirements.txt exists: # pip install -r requirements.txt
-
Run the application:
python myapp.py
Or using Flask CLI:
flask run
-
Open your web browser and go to
http://127.0.0.1:5000.
This project currently includes the following structure:
myapp.py: Main application file.static/: Directory for static files (CSS, JS, images).templates/: Directory for HTML templates.