abhshkdz / HackFlowy

:notebook: Workflowy clone, built using Backbone.js & Socket.io
807 stars 149 forks source link

Starting up HackFlowy #9

Closed theicfire closed 8 years ago

theicfire commented 10 years ago

I ran through the instructions, and when running node server.js, the program said it was listening on port 3000. I went there, and just got a blank page, with html that only had a js reference to require.js, and no other js files. What page should I start up to see hackflowy working?

This will probably be answered when I get the program running - but is zooming a feature?

masonlong commented 10 years ago

Also experiencing this issue -- no way to input any text after starting the server.

Samelot commented 10 years ago

What dialect is specified in your config.js..

For me, I was using mysql to run my database.

Not until I changed dialect: 'sqlite' to dialect: 'mysql' could I see and input text.

masonlong commented 10 years ago

I have 'mysql' specified as my dialect and I can't see or input text.

snicker commented 10 years ago

Confirm, I have the same issue. Trying to use mysql just hangs.

desyncr commented 10 years ago

Tested with mysql Ver 14.14 Distrib 5.5.38, for debian-linux-gnu (i686) using readline 6.2

With the latest changes #16 the install steps are as follow:

Here are my configurations:

$ cat config/database.json
{
  "development": {
     "username": "root",
      "password": "",
      "database": "hackflowy",
      "host"    : "localhost",
      "dialect" : "mysql"
  },
  "test": {
    "dialect": "sqlite",
    "storage": "db/test.sqlite"
  },
  "production": {
      "username": "postgres",
      "password": "",
      "database": "hackflowy",
      "host"    : "localhost",
      "dialect" : "postgres"
  }
}
$ cat config/development.json
{
    "port": 3000,
    "database": {
        "username": "root",
        "password": "",
        "database": "hackflowy",
        "options" : {
            "dialect": "mysql",
            "host"   : "localhost"
        }
    }
}

Hope that helps!