├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .jshintrc ├── .sailsrc ├── Gruntfile.js ├── Procfile ├── README.md ├── api ├── controllers │ ├── arrive.js │ ├── login.js │ ├── logout.js │ ├── make-remark.js │ ├── signup.js │ └── view-homepage.js ├── helpers │ ├── check-auth.js │ ├── set-logged-in.js │ └── set-logged-out.js └── models │ ├── .gitkeep │ ├── AuthToken.js │ ├── User.js │ └── Zone.js ├── app.js ├── app.json ├── assets ├── .eslintrc ├── dependencies │ ├── .gitkeep │ ├── bowser.min.js │ ├── jquery.js │ ├── lodash.js │ ├── moment.js │ ├── sails.io.js │ ├── timeago.js │ └── vue.js ├── favicon.ico ├── fonts │ ├── Comfortaa-Bold.ttf │ ├── Comfortaa-Light.ttf │ ├── Comfortaa-Regular.ttf │ ├── chatkin-icons.eot │ ├── chatkin-icons.svg │ ├── chatkin-icons.ttf │ ├── chatkin-icons.woff │ └── chatkin-icons.woff2 ├── images │ └── .gitkeep ├── js │ ├── .gitkeep │ └── page-scripts │ │ ├── homepage.js │ │ ├── login.js │ │ └── signup.js ├── robots.txt ├── styles │ ├── bootstrap-theme.css │ ├── bootstrap.css │ ├── icon-font.css │ ├── importer.less │ ├── mixins.less │ └── pages │ │ ├── homepage.less │ │ ├── login.less │ │ └── signup.less └── templates │ └── .gitkeep ├── config ├── blueprints.js ├── bootstrap.js ├── custom.js ├── datastores.js ├── env │ └── production.js ├── globals.js ├── http.js ├── i18n.js ├── locales │ ├── de.json │ ├── en.json │ ├── es.json │ └── fr.json ├── log.js ├── models.js ├── routes.js ├── security.js ├── session.js ├── sockets.js └── views.js ├── mobileapp ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── NOTES.md ├── README.md ├── __tests__ │ ├── index.android.js │ └── index.ios.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── mobileapp │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── components │ ├── HomeScreen │ │ ├── LocationPanel.js │ │ ├── SettingsPanel.js │ │ ├── WeatherPanel.js │ │ └── index.js │ ├── LoginScreen.js │ ├── SignupScreen.js │ └── index.js ├── images │ ├── chatkin-logo-vertical.png │ └── chatkin-logo.png ├── index.android.js ├── index.ios.js ├── ios │ ├── mobileapp-tvOS │ │ └── Info.plist │ ├── mobileapp-tvOSTests │ │ └── Info.plist │ ├── mobileapp.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── mobileapp-tvOS.xcscheme │ │ │ └── mobileapp.xcscheme │ ├── mobileapp │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── chatkin-1.png │ │ │ │ ├── chatkin-2.png │ │ │ │ ├── chatkin-3.png │ │ │ │ └── chatkin.png │ │ │ └── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── mobileappTests │ │ ├── Info.plist │ │ └── mobileappTests.m ├── package.json ├── styles │ └── index.js └── utils │ ├── flaverr.js │ ├── icomoon-config.json │ ├── send-http-request.js │ └── send-socket-request.js ├── package.json ├── scripts └── evict-inactive-users.js ├── tasks ├── config │ ├── clean.js │ ├── coffee.js │ ├── concat.js │ ├── copy.js │ ├── cssmin.js │ ├── jst.js │ ├── less.js │ ├── sails-linker.js │ ├── sync.js │ ├── uglify.js │ └── watch.js ├── pipeline.js └── register │ ├── build.js │ ├── buildProd.js │ ├── compileAssets.js │ ├── default.js │ ├── linkAssets.js │ ├── linkAssetsBuild.js │ ├── linkAssetsBuildProd.js │ ├── prod.js │ └── syncAssets.js ├── test └── .eslintrc └── views ├── 404.ejs ├── 500.ejs ├── homepage.ejs ├── layout.ejs ├── login.ejs └── signup.ejs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/.jshintrc -------------------------------------------------------------------------------- /.sailsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/.sailsrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/README.md -------------------------------------------------------------------------------- /api/controllers/arrive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/api/controllers/arrive.js -------------------------------------------------------------------------------- /api/controllers/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/api/controllers/login.js -------------------------------------------------------------------------------- /api/controllers/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/api/controllers/logout.js -------------------------------------------------------------------------------- /api/controllers/make-remark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/api/controllers/make-remark.js -------------------------------------------------------------------------------- /api/controllers/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/api/controllers/signup.js -------------------------------------------------------------------------------- /api/controllers/view-homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/api/controllers/view-homepage.js -------------------------------------------------------------------------------- /api/helpers/check-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/api/helpers/check-auth.js -------------------------------------------------------------------------------- /api/helpers/set-logged-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/api/helpers/set-logged-in.js -------------------------------------------------------------------------------- /api/helpers/set-logged-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/api/helpers/set-logged-out.js -------------------------------------------------------------------------------- /api/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/models/AuthToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/api/models/AuthToken.js -------------------------------------------------------------------------------- /api/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/api/models/User.js -------------------------------------------------------------------------------- /api/models/Zone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/api/models/Zone.js -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/app.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/app.json -------------------------------------------------------------------------------- /assets/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/.eslintrc -------------------------------------------------------------------------------- /assets/dependencies/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/dependencies/bowser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/dependencies/bowser.min.js -------------------------------------------------------------------------------- /assets/dependencies/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/dependencies/jquery.js -------------------------------------------------------------------------------- /assets/dependencies/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/dependencies/lodash.js -------------------------------------------------------------------------------- /assets/dependencies/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/dependencies/moment.js -------------------------------------------------------------------------------- /assets/dependencies/sails.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/dependencies/sails.io.js -------------------------------------------------------------------------------- /assets/dependencies/timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/dependencies/timeago.js -------------------------------------------------------------------------------- /assets/dependencies/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/dependencies/vue.js -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/fonts/Comfortaa-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/fonts/Comfortaa-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Comfortaa-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/fonts/Comfortaa-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Comfortaa-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/fonts/Comfortaa-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/chatkin-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/fonts/chatkin-icons.eot -------------------------------------------------------------------------------- /assets/fonts/chatkin-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/fonts/chatkin-icons.svg -------------------------------------------------------------------------------- /assets/fonts/chatkin-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/fonts/chatkin-icons.ttf -------------------------------------------------------------------------------- /assets/fonts/chatkin-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/fonts/chatkin-icons.woff -------------------------------------------------------------------------------- /assets/fonts/chatkin-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/fonts/chatkin-icons.woff2 -------------------------------------------------------------------------------- /assets/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/page-scripts/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/js/page-scripts/homepage.js -------------------------------------------------------------------------------- /assets/js/page-scripts/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/js/page-scripts/login.js -------------------------------------------------------------------------------- /assets/js/page-scripts/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/js/page-scripts/signup.js -------------------------------------------------------------------------------- /assets/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/robots.txt -------------------------------------------------------------------------------- /assets/styles/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/styles/bootstrap-theme.css -------------------------------------------------------------------------------- /assets/styles/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/styles/bootstrap.css -------------------------------------------------------------------------------- /assets/styles/icon-font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/styles/icon-font.css -------------------------------------------------------------------------------- /assets/styles/importer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/styles/importer.less -------------------------------------------------------------------------------- /assets/styles/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/styles/mixins.less -------------------------------------------------------------------------------- /assets/styles/pages/homepage.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/styles/pages/homepage.less -------------------------------------------------------------------------------- /assets/styles/pages/login.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/styles/pages/login.less -------------------------------------------------------------------------------- /assets/styles/pages/signup.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/assets/styles/pages/signup.less -------------------------------------------------------------------------------- /assets/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/blueprints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/blueprints.js -------------------------------------------------------------------------------- /config/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/bootstrap.js -------------------------------------------------------------------------------- /config/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/custom.js -------------------------------------------------------------------------------- /config/datastores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/datastores.js -------------------------------------------------------------------------------- /config/env/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/env/production.js -------------------------------------------------------------------------------- /config/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/globals.js -------------------------------------------------------------------------------- /config/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/http.js -------------------------------------------------------------------------------- /config/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/i18n.js -------------------------------------------------------------------------------- /config/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/locales/de.json -------------------------------------------------------------------------------- /config/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/locales/en.json -------------------------------------------------------------------------------- /config/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/locales/es.json -------------------------------------------------------------------------------- /config/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/locales/fr.json -------------------------------------------------------------------------------- /config/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/log.js -------------------------------------------------------------------------------- /config/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/models.js -------------------------------------------------------------------------------- /config/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/routes.js -------------------------------------------------------------------------------- /config/security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/security.js -------------------------------------------------------------------------------- /config/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/session.js -------------------------------------------------------------------------------- /config/sockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/sockets.js -------------------------------------------------------------------------------- /config/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/config/views.js -------------------------------------------------------------------------------- /mobileapp/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /mobileapp/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/.buckconfig -------------------------------------------------------------------------------- /mobileapp/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/.flowconfig -------------------------------------------------------------------------------- /mobileapp/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /mobileapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/.gitignore -------------------------------------------------------------------------------- /mobileapp/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /mobileapp/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/NOTES.md -------------------------------------------------------------------------------- /mobileapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/README.md -------------------------------------------------------------------------------- /mobileapp/__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/__tests__/index.android.js -------------------------------------------------------------------------------- /mobileapp/__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/__tests__/index.ios.js -------------------------------------------------------------------------------- /mobileapp/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/app/BUCK -------------------------------------------------------------------------------- /mobileapp/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/app/build.gradle -------------------------------------------------------------------------------- /mobileapp/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /mobileapp/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mobileapp/android/app/src/main/java/com/mobileapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/app/src/main/java/com/mobileapp/MainActivity.java -------------------------------------------------------------------------------- /mobileapp/android/app/src/main/java/com/mobileapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/app/src/main/java/com/mobileapp/MainApplication.java -------------------------------------------------------------------------------- /mobileapp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobileapp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobileapp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobileapp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mobileapp/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /mobileapp/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /mobileapp/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/build.gradle -------------------------------------------------------------------------------- /mobileapp/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/gradle.properties -------------------------------------------------------------------------------- /mobileapp/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /mobileapp/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /mobileapp/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/gradlew -------------------------------------------------------------------------------- /mobileapp/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/gradlew.bat -------------------------------------------------------------------------------- /mobileapp/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/keystores/BUCK -------------------------------------------------------------------------------- /mobileapp/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /mobileapp/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/android/settings.gradle -------------------------------------------------------------------------------- /mobileapp/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/app.json -------------------------------------------------------------------------------- /mobileapp/components/HomeScreen/LocationPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/components/HomeScreen/LocationPanel.js -------------------------------------------------------------------------------- /mobileapp/components/HomeScreen/SettingsPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/components/HomeScreen/SettingsPanel.js -------------------------------------------------------------------------------- /mobileapp/components/HomeScreen/WeatherPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/components/HomeScreen/WeatherPanel.js -------------------------------------------------------------------------------- /mobileapp/components/HomeScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/components/HomeScreen/index.js -------------------------------------------------------------------------------- /mobileapp/components/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/components/LoginScreen.js -------------------------------------------------------------------------------- /mobileapp/components/SignupScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/components/SignupScreen.js -------------------------------------------------------------------------------- /mobileapp/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/components/index.js -------------------------------------------------------------------------------- /mobileapp/images/chatkin-logo-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/images/chatkin-logo-vertical.png -------------------------------------------------------------------------------- /mobileapp/images/chatkin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/images/chatkin-logo.png -------------------------------------------------------------------------------- /mobileapp/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/index.android.js -------------------------------------------------------------------------------- /mobileapp/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/index.ios.js -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp-tvOS/Info.plist -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp-tvOSTests/Info.plist -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp.xcodeproj/xcshareddata/xcschemes/mobileapp-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp.xcodeproj/xcshareddata/xcschemes/mobileapp-tvOS.xcscheme -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp.xcodeproj/xcshareddata/xcschemes/mobileapp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp.xcodeproj/xcshareddata/xcschemes/mobileapp.xcscheme -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp/AppDelegate.h -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp/AppDelegate.m -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp/Images.xcassets/AppIcon.appiconset/chatkin-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp/Images.xcassets/AppIcon.appiconset/chatkin-1.png -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp/Images.xcassets/AppIcon.appiconset/chatkin-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp/Images.xcassets/AppIcon.appiconset/chatkin-2.png -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp/Images.xcassets/AppIcon.appiconset/chatkin-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp/Images.xcassets/AppIcon.appiconset/chatkin-3.png -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp/Images.xcassets/AppIcon.appiconset/chatkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp/Images.xcassets/AppIcon.appiconset/chatkin.png -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp/Info.plist -------------------------------------------------------------------------------- /mobileapp/ios/mobileapp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileapp/main.m -------------------------------------------------------------------------------- /mobileapp/ios/mobileappTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileappTests/Info.plist -------------------------------------------------------------------------------- /mobileapp/ios/mobileappTests/mobileappTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/ios/mobileappTests/mobileappTests.m -------------------------------------------------------------------------------- /mobileapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/package.json -------------------------------------------------------------------------------- /mobileapp/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/styles/index.js -------------------------------------------------------------------------------- /mobileapp/utils/flaverr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/utils/flaverr.js -------------------------------------------------------------------------------- /mobileapp/utils/icomoon-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/utils/icomoon-config.json -------------------------------------------------------------------------------- /mobileapp/utils/send-http-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/utils/send-http-request.js -------------------------------------------------------------------------------- /mobileapp/utils/send-socket-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/mobileapp/utils/send-socket-request.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/package.json -------------------------------------------------------------------------------- /scripts/evict-inactive-users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/scripts/evict-inactive-users.js -------------------------------------------------------------------------------- /tasks/config/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/config/clean.js -------------------------------------------------------------------------------- /tasks/config/coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/config/coffee.js -------------------------------------------------------------------------------- /tasks/config/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/config/concat.js -------------------------------------------------------------------------------- /tasks/config/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/config/copy.js -------------------------------------------------------------------------------- /tasks/config/cssmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/config/cssmin.js -------------------------------------------------------------------------------- /tasks/config/jst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/config/jst.js -------------------------------------------------------------------------------- /tasks/config/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/config/less.js -------------------------------------------------------------------------------- /tasks/config/sails-linker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/config/sails-linker.js -------------------------------------------------------------------------------- /tasks/config/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/config/sync.js -------------------------------------------------------------------------------- /tasks/config/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/config/uglify.js -------------------------------------------------------------------------------- /tasks/config/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/config/watch.js -------------------------------------------------------------------------------- /tasks/pipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/pipeline.js -------------------------------------------------------------------------------- /tasks/register/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/register/build.js -------------------------------------------------------------------------------- /tasks/register/buildProd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/register/buildProd.js -------------------------------------------------------------------------------- /tasks/register/compileAssets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/register/compileAssets.js -------------------------------------------------------------------------------- /tasks/register/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/register/default.js -------------------------------------------------------------------------------- /tasks/register/linkAssets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/register/linkAssets.js -------------------------------------------------------------------------------- /tasks/register/linkAssetsBuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/register/linkAssetsBuild.js -------------------------------------------------------------------------------- /tasks/register/linkAssetsBuildProd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/register/linkAssetsBuildProd.js -------------------------------------------------------------------------------- /tasks/register/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/register/prod.js -------------------------------------------------------------------------------- /tasks/register/syncAssets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/tasks/register/syncAssets.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /views/404.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/views/404.ejs -------------------------------------------------------------------------------- /views/500.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/views/500.ejs -------------------------------------------------------------------------------- /views/homepage.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/views/homepage.ejs -------------------------------------------------------------------------------- /views/layout.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/views/layout.ejs -------------------------------------------------------------------------------- /views/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/views/login.ejs -------------------------------------------------------------------------------- /views/signup.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikermcneil/chatkin/HEAD/views/signup.ejs --------------------------------------------------------------------------------