Patter is a web client for participating in public and private chat rooms over app.net. If you wish to contribute or have any other problems, contact Jonathon Duerig (@duerig on app.net).
Although you can run your own private instances, the main deployment is located at:
Everything depends on you having node, npm, and grunt-cli installed. We are going to install all the dependencies and then setup a config file.
Your /config.json
files should have your app client_id and should look like this:
{
"patter_client_id": "PSeXh2zXVCABT3DqCKBSfZMFZCemvWez"
}
Before getting started make sure you have created a config.json file.
>>> npm install
>>> grunt server
You should now be able to navigate to http://localhost:9001 and see your local copy of patter running.
Once you are finished developing patter you can then distribute patter to a production environment. To do so you must generate a version of patter, and then copy all the files to your webserver.
For example:
>>> grunt dist
>>> rsync -avzt dist/* username@remote.host:/var/www/patter.example.com/
Once all your files are uploaded you should then have a working version of patter.