Install Huginn
-
Clone the repo
$ git clone git@github.com:cantino/huginn.git $ cd huginn
-
Install rake and bundle (if necesssary):
$ gem install rake bundle
-
Install Huginn's dependencies
$ bundle install
-
Install MySQL
-
Start the MySQL server:
$ mysql.server start
-
Copy .env.example to .env:
$ cp .env.example .env
-
Create the
APP_SECRET_TOKEN
:$ rake secret
-
Edit .env, at least updating the
APP_SECRET_TOKEN
variable we just created. -
Create a development MySQL database with some example seed data:
$ rake db:create $ rake db:migrate $ rake db:seed
-
All done. Fire up the local server:
$ foreman start
Navigate to http://localhost:3000/ and login with the username and the password of "admin" and "password", respectively.
I am having issues at step 4.
The install is running in my command prompt (i.e. specifically "Start Command Prompt with Ruby").
I am getting the following output in my cmd:
So, that is the result of my cmd. Here is the result of the mkmf.log file that it told me to check out:
I know the picture is not in the best format, but any and all help would be appreciated!
Thank you!