Installation

Installation guide for guitar website

Prerequisites

Before starting the installation, make sure you have the following:

  1. Python
  2. Git

Download Source Code

  1. Create a folder for the project, then open Command Line or PowerShell.

  2. Clone the repository or download it from the following link:

    git clone https://github.com/RiwRiwara/GuitarWeb.git
    
  3. Navigate to the project directory:

    cd ./GuitarWeb
    

Setup Virtual Environment

  1. Create a virtual environment:

    python -m venv myenv
    
  2. Activate the virtual environment:

    .\myenv\Scripts\activate
    
  3. 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

  1. Run the app:

    python app.py
    
  2. 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