Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gaurav-822/gitseek
First task of Web/Cloud members of GDSC NITS 2026
https://github.com/gaurav-822/gitseek
api bootstrap5 flask github-api web
Last synced: about 2 months ago
JSON representation
First task of Web/Cloud members of GDSC NITS 2026
- Host: GitHub
- URL: https://github.com/gaurav-822/gitseek
- Owner: Gaurav-822
- Created: 2023-10-28T19:15:44.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-10T18:31:50.000Z (almost 1 year ago)
- Last Synced: 2024-01-10T20:17:35.661Z (almost 1 year ago)
- Topics: api, bootstrap5, flask, github-api, web
- Language: HTML
- Homepage: https://gitseek.onrender.com
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GitSeek
First task of Web/Cloud members of GDSC NITS 2026## Guide to Run it Locally
- Install all the packages mentioned in requirements.txt via the command $pip install -r requirements. txt
- Change this piece of code in app.py, line number 14 to 17
```
github_api_url = os.environ["GITHUB_API_URL"]
github_access_token = os.environ["GITHUB_ACCESS_TOKEN"]
response = requests.get(f"{github_api_url}/users/{name}", headers={"Authorization": f"Bearer {github_access_token}"})
```
- To
```
response = requests.get(f"https://api.github.com/users/{name}")
```
- Now use flask run to run it locally!