Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/senchalabs/jsduck-comments
Comments server for JSDuck
https://github.com/senchalabs/jsduck-comments
Last synced: 4 days ago
JSON representation
Comments server for JSDuck
- Host: GitHub
- URL: https://github.com/senchalabs/jsduck-comments
- Owner: senchalabs
- License: gpl-3.0
- Created: 2012-11-01T11:29:23.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-08-16T09:05:15.000Z (about 11 years ago)
- Last Synced: 2024-04-14T07:58:22.666Z (7 months ago)
- Language: JavaScript
- Size: 315 KB
- Stars: 8
- Watchers: 15
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
JSDuck Comments Server
======================NodeJS server for [JSDuck][] comments system on top of MySQL database.
**NOTE:** The authentication system is currently targeted to work with
[Sencha Forum][] users database. If you're not from Sencha, then this
is obviously not an option. For that case there also exists an
alternative implementation which uses a local users table, but as of
now the implementation doesn't cover registration, only the
authentication part.[JSDuck]: https://github.com/senchalabs/jsduck
[Sencha Forum]: http://www.sencha.com/forum/Install
-------Clone the repository and install dependencies:
$ git clone git://github.com/senchalabs/jsduck-comments.git
$ cd jsduck-comments
$ npm installCreate new MySQL database and run the schema.sql script to set up the
tables:$ mysql my_comments_db_name < sql/schema.sql
Create config file with user & pass for connecting to MySQL database:
$ cp config.example.js config.js
$ vi config.jsUsage
-----Run the `app.js` script to start the server:
$ node app.js
Preferably though, use [forever][] (or something similar) to run it,
so in case it happens to crash it'll be restarted automatically:$ forever -e errors.log --watch app.js
[forever]: https://github.com/nodejitsu/forever
Now the server is running, but we also need a client side, which of
course is the docs app that JSDuck generates. But we need to tell
JSDuck the address of the server and the "domain" of comments.When you're running on your local machine, the URL will be
`http://localhost:3000/auth` (unless you have changed the default port
in config.js file).The domain is a simple string of `/` - it allows a
single comments server to handle requests from multiple docs apps. So
you could have multiple docs generated with the same comments server
URL but with different domain names.For example:
$ jsduck --comments-url http://localhost:3000/auth --comments-domain extjs/4 ...
Now open the generated docs app in browser and try to log in with your
username and password.Development
-----------Install [jasmine][] if you don't have it already:
$ npm install jasmine-node -g
[jasmine]: https://github.com/mhevery/jasmine-node
Make sure you have the `testDb` configured in `config.js` - just set
up an empty MySQL database that'll be used for testing. Then simply
run make:$ make
For now the testsuite is database-io-heavy and therefore somewhat
slow. Hope to improve that on the future.