From 39e48b679a194e69700a1a0465d3e81e4bce32f7 Mon Sep 17 00:00:00 2001 From: dakshmehta007 Date: Tue, 10 Sep 2024 22:28:17 +0530 Subject: [PATCH] Added search functionality configuration and documentation --- .travis.yml | 9 +++++++++ README.md | 13 +++++++++++++ 2 files changed, 22 insertions(+) diff --git a/.travis.yml b/.travis.yml index 11ea81e..ac679dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,3 +2,12 @@ language: ruby rvm: 2.4.1 before_script: gem install awesome_bot script: awesome_bot README.md --allow-redirect + +language: ruby +rvm: 2.4.1 +before_script: + - gem install awesome_bot + - gem install your_search_engine_gem +script: + - awesome_bot README.md --allow-redirect + - your_search_engine_command --validate diff --git a/README.md b/README.md index 9f3119b..1b3f6ec 100644 --- a/README.md +++ b/README.md @@ -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)