Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Gitdorker | 1,962 | 4 months ago | 18 | Python | ||||||
A Python program to scrape secrets from GitHub through usage of a large repository of dorks. | ||||||||||
Jstarcraft Rns | 368 | 2 months ago | apache-2.0 | Java | ||||||
专注于解决推荐领域与搜索领域的两个核心问题:排序预测(Ranking)和评分预测(Rating). 为相关领域的研发人员提供完整的通用设计与参考实现. 涵盖了70多种排序预测与评分预测算法,是最快最全的Java推荐与搜索引擎. | ||||||||||
Autodock Gpu | 252 | 7 days ago | 49 | gpl-2.0 | C++ | |||||
AutoDock for GPUs and other accelerators | ||||||||||
Youtube_search | 153 | 9 | 3 months ago | 11 | October 05, 2022 | 14 | mit | Python | ||
Tool for searching for youtube videos to avoid using their heavily rate-limited API | ||||||||||
Nsga Net | 114 | 4 years ago | 8 | Python | ||||||
NSGA-Net, a Neural Architecture Search Algorithm | ||||||||||
Youtube Search | 111 | 374 | 51 | a year ago | 33 | January 29, 2021 | 11 | JavaScript | ||
npm module to easily search youtube for videos | ||||||||||
Marketplace Demo | 88 | 3 months ago | 35 | mit | Vue | |||||
Open-source marketplace front-end powered by Stelace API including search, platform automation, user management, transactions, real-time messaging, ratings and much more :zap: | ||||||||||
Movie And Tv Show Search Alfred Workflow | 84 | 2 months ago | mit | Python | ||||||
An Alfred workflow to search for a movie (or TV show) and get a few ratings | ||||||||||
Go Yelp | 37 | 7 years ago | 2 | mit | Go | |||||
go-yelp is a #golang wrapper for the Yelp REST API. It lets you do all kinds of interesting things like searching for businesses, getting user comments and ratings, and handling common errors. The library is written Go. | ||||||||||
Codechef Cli | 35 | 7 months ago | 5 | gpl-3.0 | Python | |||||
CodeChef Command Line Client. |
This Stelace starter kit is free to use, under the terms of the MIT license. Feel free to fork, contribute or just make it your own ❤️.
This starter kit offers a high-performance AirBnB-like marketplace front-end (Vue.js) with pre-configured serverless deployment based on open-source Stelace API server.
A platform template focused on search, automation and real-time is also available.
What is Stelace?
Stelace API provides advanced search, asset and user management, automation and content delivery APIs for Web platforms ranging from search-intensive marketplaces to online community apps. Stelace open-source marketplace backend lets you focus on what makes your platform unique.
Get 90+ PageSpeed score out of the box:
quasar.conf.js
.This kit follows the PRPL pattern: more info in docs.
Leverage these integrations to start running your platform even faster:
Serverless JAMStack architecture:
Node.js >= 10.18 is used for tooling.
You need your Stelace API keys to get started. Good news: Stelace is open-source so you can deploy your own server.
git clone https://github.com/stelace/marketplace-demo.git
cd marketplace-demo
# using yarn instead of npm is recommended
yarn
If you don’t have yarn installed, you can follow these instructions.
You can copy .env.example
and fill it with Stelace API keys.
cp .env.example .env.development
# You may want to use live keys in this file
cp .env.example .env.production
You need to fill the following environment variables:
STELACE_INSTANT_WEBSITE_URL
STELACE_PUBLISHABLE_API_KEY
(pubk_...) used in Vue appSTELACE_SECRET_API_KEY
(seck_...) used in data seeding scriptsSTELACE_API_URL
can be left blank unless you use your own server rather than default api.stelace.com
Please refer to .env.example
for more details about environment variables, including map, payment gateway, logging and analytics.
yarn seed
quasar dev
# or, if you want to run Netlify functions with stripe payments as well:
yarn dev
Please refer to Quasar docs for more details about front-end configuration and components.
Stelace Core API server has to be launched locally before starting this project's server.
First we need to launch services needed by Stelace Core API.
yarn docker:db
Then we need to initialize the database with Instant configuration.
cd /path/to/stelace-core
git checkout dev
yarn setup:instant
Secret and publishable api keys will be displayed so you can use it as environment variables for this project.
You’ll also need to set some environment variables such as STELACE_API_URL
(http://127.0.0.1:API_PORT).
Let’s start the server.
yarn dev
Please refer to.env.example
in stelace-server
project.
Customize the app with your own colors and branding in src/styles.json
, documented in styles.json.md.
We’ve set up continuous deployment for you with Netlify.
You just have to click "Deploy to netlify" above and follow the instructions to deploy.
Please refer to deployment docs section for more details or alternatives.