{"id":13411350,"url":"https://github.com/AlbertSuarez/hubder","last_synced_at":"2025-03-14T17:30:40.170Z","repository":{"id":67581197,"uuid":"157982983","full_name":"AlbertSuarez/hubder","owner":"AlbertSuarez","description":"👨‍🏫 Thesis finder using Tinder strategy","archived":false,"fork":false,"pushed_at":"2018-11-18T11:01:50.000Z","size":388,"stargazers_count":8,"open_issues_count":0,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-07-31T20:45:36.149Z","etag":null,"topics":["hackathon","project","python","reactjs","tinder"],"latest_commit_sha":null,"homepage":"https://devpost.com/software/hubder","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AlbertSuarez.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-11-17T12:36:17.000Z","updated_at":"2020-02-14T11:35:24.000Z","dependencies_parsed_at":"2023-02-25T07:30:39.419Z","dependency_job_id":null,"html_url":"https://github.com/AlbertSuarez/hubder","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlbertSuarez%2Fhubder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlbertSuarez%2Fhubder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlbertSuarez%2Fhubder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlbertSuarez%2Fhubder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlbertSuarez","download_url":"https://codeload.github.com/AlbertSuarez/hubder/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243618593,"owners_count":20320263,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hackathon","project","python","reactjs","tinder"],"created_at":"2024-07-30T20:01:13.073Z","updated_at":"2025-03-14T17:30:40.163Z","avatar_url":"https://github.com/AlbertSuarez.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# Hubder\n\nProject built in HackEPS 2018\n\n## Project description\n\n### Inspiration\n\nFollowing the idea that the Escola Politècnica Superior gave us at the beginning of this hackathon, we wanted to revolutionize the concept of finding a professor for doing a final thesis. Students are a young group, which its own routine. So, what could be better that adapts this problem to their day-to-day?\n\n### What it does?\n\nOur web app is used for finding professors and students in order to do the final project for their degree. For making this easier for the students, we have decorated Hubder with the same concept as Tinder. Because yeah, professors are looking for students and students are looking for professors. Like Tinder, right?\n\nThis web app allows you to register and log in as a student, professor or coordinator. Once inside the application, you can edit your profile adding a project proposal, list a batch of professors or students for swiping left or right and finally you have the possibility to list all of your matches.\n\n### How we built it\n\nThis project is independently separated into two modules: frontend and backend.\n\n- Frontend: Everything has been made with React. We wanted to ensure that everything was intuitive, responsive and (of course) beautiful. It can be seen in the photos how the interface is.\n- Backend: We used Python as a language for this module. With the help of Flask, we've built a RESTFull API as an endpoint for the frontend. This API is connecting with a PostgreSQL database, dockerized for making this easier, building a stack for managing all this application.\n\n### Challenges we ran into\n\nWhen we started hacking, we had a lot of ideas that hasn't been able to be made reality. But time is limited and we couldn't achieve all the features that we wanted for this project.\n\n### Accomplishments that we're proud of\n\nNevertheless, we are really proud of the results we had. Everyone on the team has worked with technologies that never had experience of. We also are proud of being capable of working with a good team cooperation, parallelizing tasks and being efficient in helping each other when was necessary.\n\n### What we learned\n\nAs it is said above, we all have had the opportunity to work with technologies that we never had used before. The use of React, SQLAlchemy and Flask has been a challenge that has made us learn a lot of concepts we didn't know. We've learned about how to organize projects like this one when we have a lot of languages, frameworks and different components without any incompatibilities.\n\n### What's next for Hubder\n\nWe would like to improve the experience of this problem, making it easier for the user to find its goal.\n\n## Requirements\n\n- Python 3.6+\n- Node v6\n- docker-ce (as provided by docker package repos)\n- docker-compose (as provided by PyPI)\n\n## Run\n\nvia docker-compose\n\n```bash\ndocker-compose up -d\n```\n\nYou should initialize the database after running all the stack. For doing this please run the following commands:\n\n```bash\ndocker run -it --rm --network hubder hubder_hubder-db psql -h hubder-db -U postgres postgres -f /tmp/create_api_ddl_base.sql\ndocker run -it --rm --network hubder hubder_hubder-db psql -h hubder-db -U   hubder   hubder -f /tmp/create_api_ddl_hubder.sql\n```\n\nor you can run easily the following script:\n\n```bash\n./start.sh\n```\n\n## Development\n\n### API\n\n#### Recommendations\n\nUsage of [virtualenv](https://realpython.com/blog/python/python-virtual-environments-a-primer/) is recommended for package library / runtime isolation.\n\n#### Usage\n\nTo run the server, please execute the following from the root directory:\n\n1. Change directory to the API one\n\n```bash\ncd hubder-api/\n```\n\n2. Setup virtual environment\n\n```bash\npython3 -m venv env\nsource env/bin/activate\n```\n\n3. Install dependencies\n\n```bash\npip3 install -r requirements.txt\n```\n\n4. Run Startup server\n    \n```bash\npython3 -m src\n```\n\nor via docker-compose (from root folder)\n\n```bash\ndocker-compose up -d hubder-api-app\n```\n\n### Client\n\n#### Usage\n\nIn the project directory, you can run:\n\n```bash\nnpm start\n```\n\nRuns the app in the development mode.\u003cbr\u003e\nOpen [http://localhost:3000](http://localhost:3000) to view it in the browser.\n\nThe page will reload if you make edits.\u003cbr\u003e\nYou will also see any lint errors in the console.\n\n\n# License\n\nMIT © Hubder","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAlbertSuarez%2Fhubder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FAlbertSuarez%2Fhubder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAlbertSuarez%2Fhubder/lists"}