Installation
Installation guide for guitar website
Prerequisites
Before starting the installation, make sure you have the following:
Download Source Code
-
Create a folder for the project, then open Command Line or PowerShell.
-
Clone the repository or download it from the following link:
git clone https://github.com/RiwRiwara/GuitarWeb.git
-
Navigate to the project directory:
cd ./GuitarWeb
Setup Virtual Environment
-
Create a virtual environment:
python -m venv myenv
-
Activate the virtual environment:
.\myenv\Scripts\activate
-
Upon successful activation, your command line will show:
(myenv) PS D:\Project\GuitarWeb>
Install Dependencies
Run the following command to install required libraries:
pip install -r requirements.txt
Test the Application
-
Run the app:
python app.py
-
The output will provide the URL where you can access the website, e.g. http://127.0.0.1:5000.
WARNING: This is a development server. Do not use it in production. * Running on http://127.0.0.1:5000 Press CTRL+C to quit