./start_env.sh example.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def build(self): | |
rows = [] | |
def force_number(val): | |
try: | |
return float(val) | |
except: | |
return 0 | |
users = WaterUser.objects.values( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
require('rootpath')(); | |
var config = require('config'); | |
var app = require('lib/app'); | |
var http = require('http'); | |
var server = http.Server(app); | |
require('realtime')(server); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
require('rootpath')(); | |
var config = require('config'); | |
var app = require('lib/app'); | |
var http = require('http'); | |
var server = http.Server(app); | |
require('realtime')(server); |
NewerOlder