https://github.com/node-on-fhir/carewatch
Basic social network app.
https://github.com/node-on-fhir/carewatch
Last synced: 4 months ago
JSON representation
Basic social network app.
- Host: GitHub
- URL: https://github.com/node-on-fhir/carewatch
- Owner: node-on-fhir
- Created: 2012-12-16T04:09:36.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-02-06T17:26:11.000Z (over 12 years ago)
- Last Synced: 2025-07-11T08:06:32.428Z (4 months ago)
- Language: JavaScript
- Size: 142 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.txt
Awesome Lists containing this project
README
METEOR DEPENDENCIES
meteor remove insecure
meteor add accounts-password
meteor add accounts-ui
meteor remove autopublish
meteor add less
meteor add stylus
STYLE GUIDE
1. File Names
All filenames should be lower case, with whitespaces filled with dots. Example:
page.guest.less
tag.filter.js
page.visualization.html
2. Javascript Function Names
All function names should be camelCase.
3. Style Class Names
CSS classes should be in back-bone-case. When possible, syntax keywords should be selected and used to describe the layout.

4. Javascript Variables
All function names should be camelCase.
5. Give custom names to objects instead of accepting default object names.
BAD: menuItem3
GOOD: fileOpenMenuItem
6.
//------------------------------------------------------------------------------
// Stale Database Tags
> avatarPath
db.collection.update( { field: { $exists: true } }, {$unset: { field : 1 } }, false, true)
// 'field' is your deprecated field and collection is the collection it was removed from.
// The false and true are at the end because you need to enable multi update so that the query updates all of the documents in the collection (not just the first match) and the general update command is of the form db.collection.update( criteria, objNew, upsert, multi ).
//------------------------------------------------------------------------------
// Help Needed
- Translate Zurb Foundation from .sass to .styl
- Translate Zurb Foundation Icons .sass to .styl
//------------------------------------------------------------------------------
// API Dependencies
https://developers.filepicker.io/home/
//------------------------------------------------------------------------------
// Mongo Shell Scripts
How to drop a corrupt server-side database of a running Meteor app
# meteor; meteor mongo;
> show dbs; db use meteor; show collections; db.anatomy.drop(); exit