Skip to content

m-anish2003/prototype

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🚀 Prototype

📁 Project Structure

prototype/
├── app.py              # Main application code
├── templates/          # HTML templates
├── static/             # CSS, JS, images
├── requirements.txt    # Python dependencies
└── README.md           # Project documentation

🔧 Prerequisites


🛠️ Setup Instructions

1️⃣ Clone the Repository

git clone https://github.com/anish-107/prototype.git
cd prototype

Note : Consider forking the repository first if you plan to contribute.


2️⃣ Create & Activate a Virtual Environment

Windows:

python -m venv venv
venv\Scripts\activate

macOS/Linux:

python3 -m venv venv
source venv/bin/activate

3️⃣ Install Dependencies

pip install -r requirements.txt

4️⃣ Run the Application Locally

python app.py

Visit the app at: http://localhost:5000


🤝 How to Contribute

Contributions are welcome! Here's how to get started:

  1. Fork the repository
  2. Clone your fork locally
  3. Create a new branch for your feature or fix
    git checkout -b feature/your-feature-name
  4. Make your changes, then commit them
    git add .
    git commit -m "Add: your description here"
  5. Push your branch to your fork
    git push origin feature/your-feature-name
  6. Open a Pull Request on GitHub from your forked repo

🔄 Syncing with the Original Repo

To keep your fork up to date:

git remote add upstream https://github.com/anish-107/prototype.git
git fetch upstream
git checkout master
git merge upstream/master
git push origin master

📦 Updating requirements.txt

If you add or update Python packages:

pip freeze > requirements.txt
git add requirements.txt
git commit -m "Update dependencies"
git push

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 43.6%
  • CSS 31.4%
  • JavaScript 17.0%
  • Python 8.0%