├── .gitignore ├── Config ├── app.json ├── clients.json ├── crypto.json ├── droplet.json ├── production │ └── app.json ├── secrets │ └── postgresql.json └── servers.json ├── HelloVapor.xcodeproj ├── Auth_Info.plist ├── BCrypt_Info.plist ├── CLibreSSL_Info.plist ├── Cache_Info.plist ├── Cipher_Info.plist ├── Console_Info.plist ├── Cookies_Info.plist ├── Core_Info.plist ├── Essentials_Info.plist ├── FluentPostgreSQL_Info.plist ├── FluentTester_Info.plist ├── Fluent_Info.plist ├── FormData_Info.plist ├── GeneratedModuleMap │ └── CLibreSSL │ │ └── module.modulemap ├── HMAC_Info.plist ├── HTTPRouting_Info.plist ├── HTTP_Info.plist ├── Hash_Info.plist ├── JSON_Info.plist ├── Jay_Info.plist ├── Leaf_Info.plist ├── Multipart_Info.plist ├── Node_Info.plist ├── PathIndexable_Info.plist ├── Polymorphic_Info.plist ├── PostgreSQL_Info.plist ├── Random_Info.plist ├── Routing_Info.plist ├── SMTP_Info.plist ├── Sessions_Info.plist ├── Settings_Info.plist ├── SocksCore_Info.plist ├── Socks_Info.plist ├── TLS_Info.plist ├── Transport_Info.plist ├── TurnstileCrypto_Info.plist ├── TurnstileWeb_Info.plist ├── Turnstile_Info.plist ├── TypeSafeRouting_Info.plist ├── URI_Info.plist ├── VaporPostgreSQL_Info.plist ├── Vapor_Info.plist ├── WebSockets_Info.plist ├── libc_Info.plist ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── HelloVapor.xcscmblueprint └── xcshareddata │ └── xcschemes │ ├── HelloVapor.xcscheme │ └── xcschememanagement.plist ├── LICENSE ├── Localization ├── default.json ├── en-US.json ├── es-US.json ├── nl-BE.json └── nl-NL.json ├── Package.swift ├── Procfile ├── Public ├── home │ ├── images │ │ ├── home-center-banner.png │ │ └── vapor-logo.png │ └── styles │ │ └── app.css ├── share │ ├── images │ │ ├── av95108_1_1477481744.jpg │ │ ├── location2x.png │ │ ├── red-line.png │ │ └── vote_num2x.png │ └── styles │ │ ├── js │ │ └── jquery-1.11.3.min.js │ │ └── mob.css └── srsq │ ├── images │ ├── app-2.png │ ├── awe-1.jpg │ ├── awe-2.jpg │ ├── awe-3.jpg │ ├── awe-4.jpg │ ├── bn-sprit.png │ ├── btn-1.png │ ├── btn-2.png │ ├── est-banner.png │ ├── feature-1.png │ ├── ftr-bnr.png │ ├── ftr-fve.png │ ├── ftr-fvr.png │ ├── ftr-one.png │ ├── ftr-tre.png │ ├── ftr-two.png │ ├── get-bnr.jpg │ ├── iphone.png │ ├── men-2.png │ ├── msg.png │ ├── nav-icon.png │ ├── ph.png │ ├── point.png │ ├── quote-1.png │ ├── quote-2.png │ ├── social.png │ ├── star.png │ └── up-arrow.png │ └── styles │ ├── bootstrap.css │ ├── js │ ├── easing.js │ ├── jquery-1.11.0.min.js │ └── move-top.js │ └── style.css ├── README.md ├── Resources └── Views │ ├── base.leaf │ ├── embeds │ └── header.leaf │ ├── home │ └── welcome.html │ ├── share │ └── index.html │ ├── srsq │ └── index.html │ ├── template.leaf │ └── welcome.leaf ├── Sources └── App │ ├── Controllers │ └── PostController.swift │ ├── Models │ ├── EBUser.swift │ ├── Post.swift │ ├── SQActive.swift │ ├── SQAllUser.swift │ ├── SQAnimal.swift │ ├── SQBanner.swift │ ├── SQFriend.swift │ ├── SQPerson.swift │ ├── SQPic.swift │ ├── SQProfile.swift │ ├── SQRcToken.swift │ └── UInt32+Random.swift │ └── main.swift └── app.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Config/app.json -------------------------------------------------------------------------------- /Config/clients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Config/clients.json -------------------------------------------------------------------------------- /Config/crypto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Config/crypto.json -------------------------------------------------------------------------------- /Config/droplet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Config/droplet.json -------------------------------------------------------------------------------- /Config/production/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "$VAPOR_APP_KEY" 3 | } -------------------------------------------------------------------------------- /Config/secrets/postgresql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Config/secrets/postgresql.json -------------------------------------------------------------------------------- /Config/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Config/servers.json -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Auth_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Auth_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/BCrypt_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/BCrypt_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/CLibreSSL_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/CLibreSSL_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Cache_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Cache_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Cipher_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Cipher_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Console_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Console_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Cookies_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Cookies_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Core_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Core_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Essentials_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Essentials_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/FluentPostgreSQL_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/FluentPostgreSQL_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/FluentTester_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/FluentTester_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Fluent_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Fluent_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/FormData_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/FormData_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/GeneratedModuleMap/CLibreSSL/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/GeneratedModuleMap/CLibreSSL/module.modulemap -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/HMAC_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/HMAC_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/HTTPRouting_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/HTTPRouting_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/HTTP_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/HTTP_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Hash_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Hash_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/JSON_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/JSON_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Jay_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Jay_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Leaf_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Leaf_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Multipart_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Multipart_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Node_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Node_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/PathIndexable_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/PathIndexable_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Polymorphic_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Polymorphic_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/PostgreSQL_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/PostgreSQL_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Random_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Random_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Routing_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Routing_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/SMTP_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/SMTP_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Sessions_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Sessions_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Settings_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Settings_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/SocksCore_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/SocksCore_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Socks_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Socks_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/TLS_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/TLS_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Transport_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Transport_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/TurnstileCrypto_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/TurnstileCrypto_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/TurnstileWeb_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/TurnstileWeb_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Turnstile_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Turnstile_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/TypeSafeRouting_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/TypeSafeRouting_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/URI_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/URI_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/VaporPostgreSQL_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/VaporPostgreSQL_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/Vapor_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/Vapor_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/WebSockets_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/WebSockets_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/libc_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/libc_Info.plist -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/project.xcworkspace/xcshareddata/HelloVapor.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/project.xcworkspace/xcshareddata/HelloVapor.xcscmblueprint -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/xcshareddata/xcschemes/HelloVapor.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/xcshareddata/xcschemes/HelloVapor.xcscheme -------------------------------------------------------------------------------- /HelloVapor.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/HelloVapor.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/LICENSE -------------------------------------------------------------------------------- /Localization/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Localization/default.json -------------------------------------------------------------------------------- /Localization/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Localization/en-US.json -------------------------------------------------------------------------------- /Localization/es-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Localization/es-US.json -------------------------------------------------------------------------------- /Localization/nl-BE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Localization/nl-BE.json -------------------------------------------------------------------------------- /Localization/nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Localization/nl-NL.json -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Package.swift -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Procfile -------------------------------------------------------------------------------- /Public/home/images/home-center-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/home/images/home-center-banner.png -------------------------------------------------------------------------------- /Public/home/images/vapor-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/home/images/vapor-logo.png -------------------------------------------------------------------------------- /Public/home/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/home/styles/app.css -------------------------------------------------------------------------------- /Public/share/images/av95108_1_1477481744.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/share/images/av95108_1_1477481744.jpg -------------------------------------------------------------------------------- /Public/share/images/location2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/share/images/location2x.png -------------------------------------------------------------------------------- /Public/share/images/red-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/share/images/red-line.png -------------------------------------------------------------------------------- /Public/share/images/vote_num2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/share/images/vote_num2x.png -------------------------------------------------------------------------------- /Public/share/styles/js/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/share/styles/js/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /Public/share/styles/mob.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/share/styles/mob.css -------------------------------------------------------------------------------- /Public/srsq/images/app-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/app-2.png -------------------------------------------------------------------------------- /Public/srsq/images/awe-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/awe-1.jpg -------------------------------------------------------------------------------- /Public/srsq/images/awe-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/awe-2.jpg -------------------------------------------------------------------------------- /Public/srsq/images/awe-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/awe-3.jpg -------------------------------------------------------------------------------- /Public/srsq/images/awe-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/awe-4.jpg -------------------------------------------------------------------------------- /Public/srsq/images/bn-sprit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/bn-sprit.png -------------------------------------------------------------------------------- /Public/srsq/images/btn-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/btn-1.png -------------------------------------------------------------------------------- /Public/srsq/images/btn-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/btn-2.png -------------------------------------------------------------------------------- /Public/srsq/images/est-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/est-banner.png -------------------------------------------------------------------------------- /Public/srsq/images/feature-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/feature-1.png -------------------------------------------------------------------------------- /Public/srsq/images/ftr-bnr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/ftr-bnr.png -------------------------------------------------------------------------------- /Public/srsq/images/ftr-fve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/ftr-fve.png -------------------------------------------------------------------------------- /Public/srsq/images/ftr-fvr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/ftr-fvr.png -------------------------------------------------------------------------------- /Public/srsq/images/ftr-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/ftr-one.png -------------------------------------------------------------------------------- /Public/srsq/images/ftr-tre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/ftr-tre.png -------------------------------------------------------------------------------- /Public/srsq/images/ftr-two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/ftr-two.png -------------------------------------------------------------------------------- /Public/srsq/images/get-bnr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/get-bnr.jpg -------------------------------------------------------------------------------- /Public/srsq/images/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/iphone.png -------------------------------------------------------------------------------- /Public/srsq/images/men-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/men-2.png -------------------------------------------------------------------------------- /Public/srsq/images/msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/msg.png -------------------------------------------------------------------------------- /Public/srsq/images/nav-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/nav-icon.png -------------------------------------------------------------------------------- /Public/srsq/images/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/ph.png -------------------------------------------------------------------------------- /Public/srsq/images/point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/point.png -------------------------------------------------------------------------------- /Public/srsq/images/quote-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/quote-1.png -------------------------------------------------------------------------------- /Public/srsq/images/quote-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/quote-2.png -------------------------------------------------------------------------------- /Public/srsq/images/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/social.png -------------------------------------------------------------------------------- /Public/srsq/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/star.png -------------------------------------------------------------------------------- /Public/srsq/images/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/images/up-arrow.png -------------------------------------------------------------------------------- /Public/srsq/styles/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/styles/bootstrap.css -------------------------------------------------------------------------------- /Public/srsq/styles/js/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/styles/js/easing.js -------------------------------------------------------------------------------- /Public/srsq/styles/js/jquery-1.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/styles/js/jquery-1.11.0.min.js -------------------------------------------------------------------------------- /Public/srsq/styles/js/move-top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/styles/js/move-top.js -------------------------------------------------------------------------------- /Public/srsq/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Public/srsq/styles/style.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Views/base.leaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Resources/Views/base.leaf -------------------------------------------------------------------------------- /Resources/Views/embeds/header.leaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Resources/Views/embeds/header.leaf -------------------------------------------------------------------------------- /Resources/Views/home/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Resources/Views/home/welcome.html -------------------------------------------------------------------------------- /Resources/Views/share/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Resources/Views/share/index.html -------------------------------------------------------------------------------- /Resources/Views/srsq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Resources/Views/srsq/index.html -------------------------------------------------------------------------------- /Resources/Views/template.leaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Resources/Views/template.leaf -------------------------------------------------------------------------------- /Resources/Views/welcome.leaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Resources/Views/welcome.leaf -------------------------------------------------------------------------------- /Sources/App/Controllers/PostController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Sources/App/Controllers/PostController.swift -------------------------------------------------------------------------------- /Sources/App/Models/EBUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Sources/App/Models/EBUser.swift -------------------------------------------------------------------------------- /Sources/App/Models/Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Sources/App/Models/Post.swift -------------------------------------------------------------------------------- /Sources/App/Models/SQActive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Sources/App/Models/SQActive.swift -------------------------------------------------------------------------------- /Sources/App/Models/SQAllUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Sources/App/Models/SQAllUser.swift -------------------------------------------------------------------------------- /Sources/App/Models/SQAnimal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Sources/App/Models/SQAnimal.swift -------------------------------------------------------------------------------- /Sources/App/Models/SQBanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Sources/App/Models/SQBanner.swift -------------------------------------------------------------------------------- /Sources/App/Models/SQFriend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Sources/App/Models/SQFriend.swift -------------------------------------------------------------------------------- /Sources/App/Models/SQPerson.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Sources/App/Models/SQPerson.swift -------------------------------------------------------------------------------- /Sources/App/Models/SQPic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Sources/App/Models/SQPic.swift -------------------------------------------------------------------------------- /Sources/App/Models/SQProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Sources/App/Models/SQProfile.swift -------------------------------------------------------------------------------- /Sources/App/Models/SQRcToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Sources/App/Models/SQRcToken.swift -------------------------------------------------------------------------------- /Sources/App/Models/UInt32+Random.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Sources/App/Models/UInt32+Random.swift -------------------------------------------------------------------------------- /Sources/App/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/Sources/App/main.swift -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeruik/SRSQ-Vapor/HEAD/app.json --------------------------------------------------------------------------------