JavaScriptPython
  1. JavaScript 93.5%
  2. Python 6.4%
  3. Other 0.1%

SMART Sample Apps Read more

Read-Only access

api_verify Workaround for bug in some rdflib versions []
direct_apps Bugfix for direct apps []
django_concurrent_test_server Removed defunct django_concurrent_test_server submodule []
middlewares Added Med Coder app. []
mpr_monitor Fix a problem with MPR monitor settings import []
rx_reminder Adding back .htaccess to the RX reminder app []
session Added empty session dir []
static Background app does not need an icon []
.gitignore Oops - remove swp files []
.gitmodules Remove smart_common submodule []
LICENSE added Apache v2 license []
README.md readme formatting []
__init__.py 1st commit []
build_development.sh Added appigo app as 'med_calendar' []
build_production.sh Updated build_production script (parallel builds) []
django.wsgi Rename project in django wsgi module []
manage.py 1st commit []
settings.py.default Added link to app server's base URI in settings []
smart_client @ a9d852e Update the reference to the python client []
urls.py Removed webhook-depdendent apps (allergy_check) []
README.md

SMArt Sample Apps Joshua dot Mandel at childrens.harvard.edu

This repository contains a collection of sample SMArt Connect Apps:

  • API Playground
  • Got Statins
  • Med List
  • Problem List
  • Blue Button Import (+ Med Coder to clean up imported data)

The entire collection of sample apps is packaged here as a django app, because that's how we deploy it on our development servers. All the javascript/html code resides in /static.

Most of these apps were built using the JavascriptMVC framework. There's a shared library of data models and common code in static/framework/smart, and individual application code resides in subdirectories of static/framework (e.g. static/framework/problem_list).For installation instructions, please see the README at:

https://github.com/chb/smart_server/



Markdown Cheat Sheet

Format Text

Headers

# This is an <h1> tag
## This is an <h2> tag
###### This is an <h6> tag

Text styles

*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__

*You **can** combine them*

Lists

Unordered

* Item 1
* Item 2
  * Item 2a
  * Item 2b

Ordered

1. Item 1
2. Item 2
3. Item 3
   * Item 3a
   * Item 3b

Miscellaneous

Images

![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)

Links

http://github.com - automatic!
[GitHub](http://github.com)

Blockquotes

As Kanye West said:

> We're living the future so
> the present is our past.

Code Examples in Markdown

Syntax highlighting with GFM

```javascript
function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}
```

Or, indent your code 4 spaces

Here is a Python code example
without syntax highlighting:

    def foo:
      if not bar:
        return true

Inline code for comments

I think you should use an
`<addr>` element here instead.
Something went wrong with that request. Please try again.