All Projects → seart-group → ghs

seart-group / ghs

Licence: MIT license
GitHub Search Engine: Web Application used to retrieve, store and present projects from GitHub, as well as any statistics related to them.

Programming Languages

java
68154 projects - #9 most used programming language
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to ghs

throttlestop
Simple tool to manage thermal behaviour on Linux
Stars: ✭ 63 (-8.7%)
Mutual labels:  msr
msr-safe
Allows safer access to model specific registers (MSRs)
Stars: ✭ 62 (-10.14%)
Mutual labels:  msr
SpaceFusion
NAACL'19: "Jointly Optimizing Diversity and Relevance in Neural Response Generation"
Stars: ✭ 73 (+5.8%)
Mutual labels:  msr
raplcap
RAPL power capping C interface with multiple implementations
Stars: ✭ 23 (-66.67%)
Mutual labels:  msr
ChineseNER
中文NER的那些事儿
Stars: ✭ 241 (+249.28%)
Mutual labels:  msr

GHSearch Platform

This project is made of two subprojects:

  1. application: The main application has two main responsibilities:
    1. Crawling GitHub and retrieving repository information. This can be disabled with app.crawl.enabled argument.
    2. Serving as the backend server for website/frontend
  2. front-end: A frontend for searching the database, which is available at http://seart-ghs.si.usi.ch

Setup & Run Project Locally (for development)

The detailed instruction can be find here.

Dockerisation 🐳

The instruction to deploy the project via Docker is available here.

More Info on Flyway and Database Migration

To learn more about Flyway you can read on here.


FAQ

How can I report a bug or request a feature or ask a question?**

Please add a new issue and we will get back to you very soon.

How add a new programming language to platform?

  1. Add the new language name to supported_languages table via:
    1. Flyway migration file (recommended): Create a new file src/main/resources/db/migration/Vx__NewLangs.sql containing: INSERT INTO supported_language (name,added) VALUES ('C++',current_timestamp);
    2. Or, manually editing the table.
    • Note:
      • A comprehensive list of valid languages (and their aliases) are available at here.
      • Plus you can see a similar list at GitHub Advanced Search Page.
      • You can use the following link to verify if a language is valid, and gives an upper-bound for the number of new repositories to be mined:
        • Example: C++ -> C%2B%2B:https://api.github.com/search/repositories?q=is:public+stars:%3E10+language:C%2B%2B.
  2. Add the new language icon: See this guide
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].