Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/add search engine #627

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
language: ruby
rvm: 2.4.1
before_script: gem install awesome_bot
script: awesome_bot README.md --allow-redirect
before_script:
- gem install awesome_bot
- gem install your_search_engine_gem
script:
- awesome_bot README.md --allow-redirect
- your_search_engine_command --validate
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ A list of programming tutorials in which aspiring software developers learn how

To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines.

## Search Functionality

This repository now includes search functionality powered by [Your Search Engine]. To configure the search, update the `config.yml` file with your search engine API key and index name.

### Configuration

```yaml
search:
provider: your_search_engine
api_key: YOUR_API_KEY
index_name: YOUR_INDEX_NAME


## Table of Contents:

- [C#](#c)
Expand Down