From 488879eaed5380c4ef45c38c1ab0366e43a46951 Mon Sep 17 00:00:00 2001 From: Azuretyie <46918575+Azuretyie@users.noreply.github.com> Date: Sun, 3 Mar 2019 22:07:50 -0600 Subject: [PATCH 1/4] Create database.yml --- config/database.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 config/database.yml diff --git a/config/database.yml b/config/database.yml new file mode 100644 index 0000000..679a6da --- /dev/null +++ b/config/database.yml @@ -0,0 +1,27 @@ +# SQLite version 3.x +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem 'sqlite3' +# +# default: &default +# adapter: sqlite3 +# pool: 5 +# timeout: 5000 + +default: &default + adapter: sqlite3 + pool: 5 + timeout: 5000 + +test: + <<: *default + database: db/test.sqlite3 + +production: + <<: *default + database: db/prod.sqlite3 + +development: + <<: *default + database: db/development.sqlite3 From 55dc2a6626d7b7c2b0f6834d18f719b78681d31f Mon Sep 17 00:00:00 2001 From: Azuretyie <46918575+Azuretyie@users.noreply.github.com> Date: Sun, 3 Mar 2019 22:09:34 -0600 Subject: [PATCH 2/4] Update README.md --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index f0d8c38..94086ea 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,21 @@ The list of jobs will be limited to the "easy to apply" ones from the page. The The application has a matching algorithm that lets the user apply to jobs in which he/she is more than 50% compatible against the requirements for that specific position. The user can inspect the jobs and decide if it is appropiate to apply. +## Ubuntu 16.04 minimal install. +```shell +apt update +apt-get install ruby ruby-bundler build-essential zlib1g-dev sqlite3 libpq-dev libsqlite3-dev git qt4-qmake qt4-default libqtwebkit-dev libqtwebkit4 nodejs +sudo apt install git +git clone https://github.com/Azuretyie/job-hunter.git +cd job-hunter/ +bundle install +gem install sqlite3 +./bin/setup +rails s +``` + + + If you have any questions, contact the maintainers of this project: - Juan Ortiz (jmopr83@gmail.com) From df482b6c45dc3ca4198e6a7a2313ba395e5d654c Mon Sep 17 00:00:00 2001 From: Azuretyie <46918575+Azuretyie@users.noreply.github.com> Date: Sun, 3 Mar 2019 22:12:46 -0600 Subject: [PATCH 3/4] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 94086ea..b0ddd83 100644 --- a/README.md +++ b/README.md @@ -13,16 +13,16 @@ The application has a matching algorithm that lets the user apply to jobs in whi ## Ubuntu 16.04 minimal install. ```shell apt update -apt-get install ruby ruby-bundler build-essential zlib1g-dev sqlite3 libpq-dev libsqlite3-dev git qt4-qmake qt4-default libqtwebkit-dev libqtwebkit4 nodejs +apt install ruby ruby-bundler build-essential zlib1g-dev sqlite3 libpq-dev libsqlite3-dev git qt4-qmake qt4-default libqtwebkit-dev libqtwebkit4 nodejs sudo apt install git -git clone https://github.com/Azuretyie/job-hunter.git +git clone https://github.com/jmopr/job-hunter.git cd job-hunter/ bundle install gem install sqlite3 ./bin/setup rails s ``` - +This starts the application on: http://localhost:3000 If you have any questions, contact the maintainers of this project: From 5a11807d32bd1ae8ff1363b11a51c26d025c22a5 Mon Sep 17 00:00:00 2001 From: Azuretyie <46918575+Azuretyie@users.noreply.github.com> Date: Sun, 3 Mar 2019 22:13:27 -0600 Subject: [PATCH 4/4] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index b0ddd83..684970a 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,7 @@ The application has a matching algorithm that lets the user apply to jobs in whi ## Ubuntu 16.04 minimal install. ```shell apt update -apt install ruby ruby-bundler build-essential zlib1g-dev sqlite3 libpq-dev libsqlite3-dev git qt4-qmake qt4-default libqtwebkit-dev libqtwebkit4 nodejs -sudo apt install git +apt install ruby ruby-bundler build-essential zlib1g-dev sqlite3 libpq-dev libsqlite3-dev git qt4-qmake qt4-default libqtwebkit-dev libqtwebkit4 nodejs git git clone https://github.com/jmopr/job-hunter.git cd job-hunter/ bundle install