This guide provides detailed steps on how to set up and run the web application. Follow each step carefully to ensure successful setup and execution.
Ensure that Python is installed on your system. If it's not installed, follow the installation instructions below.
-
Windows Users:
- Visit python.org to download the Python installer.
- Execute the downloaded file.
- Follow the installation prompts. Remember to select "Add Python to PATH" during the installation process.
-
macOS/Linux Users:
- Typically, Python comes pre-installed on macOS and Linux.
- Check if Python is installed by typing
python --versionorpython3 --versionin your terminal. - If Python is not installed, download it from python.org or use a package manager (e.g., Homebrew for macOS:
brew install python, or apt for Ubuntu:sudo apt-get install python3).
After installing Python, install the project's dependencies:
git clone [Your Repository URL]
cd [Your Project Directory]
pip install -r requirements.txtFollow these steps to work with SCSS:
-
Install SCSS:
- Ensure Node.js is installed (download from nodejs.org if not).
- Install SCSS globally using npm:
npm install -g sass
-
Configure File Watcher in PyCharm:
- Open your project in PyCharm.
- Navigate to
File->Settings->Tools->File Watchers. - Click the
+icon to add a new watcher. - Select
<custom>template. - Set up the File Watcher for SCSS. Detailed steps can be found in the PyCharm File Watcher tutorial.
To run the application:
python app.pyThis command starts the web server. Access the application through your web browser at http://localhost:5000 or the address specified in your terminal.
- Ensure all paths and commands are correct for your system and project.
- If you encounter errors, review the console output for troubleshooting clues.
For further assistance, reach out to the project maintainers or refer to the README file.