A deployable web platform for collaborative conversation, ideation & sense-making. Use it for free at https://github.com/metamaps/metamaps
Go to file
2013-01-20 21:09:38 -05:00
app merged comment in home.html.erb with Twitter contact info 2013-01-15 19:32:23 -05:00
config added home page with recent info, and personal profiles with recent indo 2013-01-07 23:03:41 -05:00
db push to live successful! swapping back out files for normal dev 2013-01-08 00:42:00 -05:00
doc added all files 2012-09-22 22:39:12 -04:00
lib test 2012-09-22 22:50:25 -04:00
log added all files 2012-09-22 22:39:12 -04:00
public push to live successful! swapping back out files for normal dev 2013-01-08 00:42:00 -05:00
script added all files 2012-09-22 22:39:12 -04:00
test converted all references to items to topics 2013-01-01 17:45:51 -05:00
vendor added all files 2012-09-22 22:39:12 -04:00
.gitignore updated .gitignore 2012-12-15 13:49:12 -05:00
config.ru added all files 2012-09-22 22:39:12 -04:00
Gemfile updated Gemfile to 3.2.11 2013-01-10 21:22:01 -05:00
Gemfile.lock updated Gemfile to 3.2.11 2013-01-10 21:22:01 -05:00
Rakefile added all files 2012-09-22 22:39:12 -04:00
README.rdoc added brief readme 2013-01-20 21:09:38 -05:00

How to code in Metamaps

Here are the important folders/files:

config/database.yml: This file is your database configuration. If it doesn't exist, copy it from config/database.yml.default and then get it set up. config/database.yml is in .gitignore

app/assets/javascripts/application.js: Global Javascript
app/assets/javascripts/Jit/*: These files handle all code that uses the Javascript Infovis Toolkit, so realistically, most code for laying stuff out is in here.

app/assets/controllers/*: These files define actions you can do on the different database objects. So for instance, what happens when you edit a Synapse? Check in app/assets/controllers/synapse_controller.rb, in the edit block

app/assets/views/*.html.erb: Files in here define either html that is displayed when a certain action is called (like edit, or create) on a thing. E.G. app/assets/views/topic/new.html.erb would have a form for creating a new topic. We don't use that way very much anymore though. "Partial" views can be called elsewhere in ruby code and are prefixed with an underscore. So we focus more on the files starting with an underscore. Read through the comments at the top of each file to understand what they all do.

app/assets/views/*.js.erb: Javascript that is called in response to, e.g., editing or creating a topic, synapse, etc.