From a5ebe5c2caa90bff71ac28966c91bd681fd5c07b Mon Sep 17 00:00:00 2001 From: Nutan Kumar Panda Date: Sat, 15 Oct 2016 03:06:02 +0530 Subject: [PATCH 1/6] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 818c238..9f5c234 100644 --- a/README.md +++ b/README.md @@ -17,16 +17,20 @@ Fuzzapi is rails application which uses API_Fuzzer and provide UI solution for g 2. Clone the repository into your localmachine -3. `cd /path/Fuzzapi`, move to Fuzzapi directory +3. `cd /path/Fuzzapi/bin`, move to Fuzzapi directory 4. `bundle install` to install the gem dependencies of the application +5. Delete dependencies from gem file and install separately. + 5. `rake db:migrate` to creates tables, migrations etc. 6. `rails s` to run the server 7. Open `http://localhost:3000` in browser which should point to the application url +8. If u get redis server error, install and start the service separately. + Fuzzapi comes with `Docker` to simplify installation processing. Following commands will setup application using `Docker`. 1. Clone the repository into your local machine From e12b1a287b0cb3e8f61a6a266857c9b2aeb5a610 Mon Sep 17 00:00:00 2001 From: Nutan Kumar Panda Date: Sat, 15 Oct 2016 03:08:16 +0530 Subject: [PATCH 2/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f5c234..832036c 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Fuzzapi is rails application which uses API_Fuzzer and provide UI solution for g 7. Open `http://localhost:3000` in browser which should point to the application url -8. If u get redis server error, install and start the service separately. +8. If u get redis server error, install and start the service separately. (brew services start redis) Fuzzapi comes with `Docker` to simplify installation processing. Following commands will setup application using `Docker`. From 5f978924261a0f87bc77de4e2097094edf359d02 Mon Sep 17 00:00:00 2001 From: Nutan Kumar Panda Date: Sun, 16 Oct 2016 02:02:31 +0530 Subject: [PATCH 3/6] Update README.md --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 832036c..0dfe75d 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,17 @@ Fuzzapi is rails application which uses API_Fuzzer and provide UI solution for g 7. Open `http://localhost:3000` in browser which should point to the application url -8. If u get redis server error, install and start the service separately. (brew services start redis) +8. If u get redis server error, install and start the service separately. + +9. Close everything and go to Fuzzapi/bin folder. + +10. open three tabs of terminal + +11. `redis-server` in first tab + +12. `bundle exec sidekiq -r urFuzzAPIPath` in second tab + +13. `rails s` in third tab then visit and scan localhost:3000 Fuzzapi comes with `Docker` to simplify installation processing. Following commands will setup application using `Docker`. From cc05910762a5c4c54b5e49d52f4ebc75cc88f462 Mon Sep 17 00:00:00 2001 From: Nutan Kumar Panda Date: Sun, 16 Oct 2016 20:30:28 +0530 Subject: [PATCH 4/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0dfe75d..f917ccb 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Fuzzapi is rails application which uses API_Fuzzer and provide UI solution for g 4. `bundle install` to install the gem dependencies of the application -5. Delete dependencies from gem file and install separately. +5. Delete dependencies from gem file and install separately if u r finding any specific dependency error. 5. `rake db:migrate` to creates tables, migrations etc. From 42159c75a754e8f9cab224b8fae3daf34b29e478 Mon Sep 17 00:00:00 2001 From: Nutan Kumar Panda Date: Mon, 27 Mar 2017 20:17:45 +0000 Subject: [PATCH 5/6] Update README.md updated dependency commands --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index f917ccb..0162e63 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,7 @@ Fuzzapi is rails application which uses API_Fuzzer and provide UI solution for g 3. `cd /path/Fuzzapi/bin`, move to Fuzzapi directory -4. `bundle install` to install the gem dependencies of the application - -5. Delete dependencies from gem file and install separately if u r finding any specific dependency error. +4. `bundle install` to install the gem dependencies of the application. (if you are getting some error related to any package search for its dependent packages and install them first. For example if error is related to pg `sudo apt-get install libpq-dev` then `gem install pg -v '0.18.4'`. Mostly people get errors related to nokogiri so here are the commands to resolve `sudo apt-get install build-essential patch` , `sudo apt-get install ruby-dev zlib1g-dev liblzma-dev` , `gem install nokogiri -v '1.6.8.1'` 5. `rake db:migrate` to creates tables, migrations etc. From 029ce3689cae87fdbc3bf1ee7c68c91bedecd2a3 Mon Sep 17 00:00:00 2001 From: Nutan Kumar Panda Date: Mon, 27 Mar 2017 20:36:01 +0000 Subject: [PATCH 6/6] updated details to resolve error more steps --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0162e63..1cf5905 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Fuzzapi is rails application which uses API_Fuzzer and provide UI solution for g 7. Open `http://localhost:3000` in browser which should point to the application url -8. If u get redis server error, install and start the service separately. +8. If u get redis server error, install and start the service separately. (install: `sudo apt-get -y install redis-server`, check the status: `sudo service redis-server status`) 9. Close everything and go to Fuzzapi/bin folder.