Fyle Web Development is a GitHub repository viewer designed to interact with GitHub APIs. This web application allows users to view specific user repositories and details on GitHub. Users can clone repositories, create and activate virtual environments, install dependencies, and run the server to explore GitHub repositories conveniently. The project emphasizes ease of use and customization, enabling users to tailor their GitHub repository viewing experience.
git clone https://github.com/VykSI/fyle-web-development.git
cd fyle-web-development/fylewindows:
python -m venv env
env\Scripts\activate
linux:
pip install virtualenv
virtualenv env
source env/bin/activatepip install -r requirements.txtSettings > developer settings > personal access tokens > fine grained token > generate token
Copy the token and paste it in views.py (GITHUB_ACCESS_TOKEN).
python manage.py runserverIt should start the server in localhost:8000.
- Make sure to activate the virtual environment before running the server.
- Customize the GitHub API integration in views.py as needed for your project.
- Ensure that you have the necessary dependencies installed from requirements.txt.