├── .gitignore ├── LICENSE ├── README.md ├── domain-subdomain ├── .gitignore ├── README.md ├── aah.project ├── app │ ├── controllers │ │ ├── admin │ │ │ └── app.go │ │ ├── app.go │ │ └── wildcard │ │ │ └── app.go │ ├── init.go │ └── models │ │ └── greet.go ├── config │ ├── aah.conf │ ├── env │ │ ├── dev.conf │ │ └── prod.conf │ ├── routes.conf │ └── security.conf ├── go.mod ├── i18n │ └── messages.en ├── static │ ├── css │ │ └── aah.css │ ├── img │ │ ├── aah-framework-logo.png │ │ └── favicon.ico │ ├── js │ │ └── aah.js │ └── robots.txt └── views │ ├── common │ ├── error_footer.html │ ├── error_header.html │ ├── footer_scripts.html │ └── head_tags.html │ ├── errors │ ├── 404.html │ └── 500.html │ ├── layouts │ └── master.html │ └── pages │ ├── admin │ └── app │ │ └── dashboard.html │ ├── app │ └── index.html │ └── wildcard │ └── app │ └── entry.html ├── form-based-auth ├── .gitignore ├── README.md ├── aah.project ├── app │ ├── controllers │ │ ├── admin │ │ │ └── dashboard.go │ │ └── app.go │ ├── init.go │ ├── models │ │ ├── greet.go │ │ └── user.go │ └── security │ │ ├── form_authentication_provider.go │ │ └── form_authorization_provider.go ├── config │ ├── aah.conf │ ├── env │ │ ├── dev.conf │ │ └── prod.conf │ ├── routes.conf │ └── security.conf ├── go.mod ├── i18n │ └── messages.en ├── static │ ├── css │ │ └── aah.css │ ├── img │ │ ├── aah-framework-logo.png │ │ └── favicon.ico │ ├── js │ │ └── aah.js │ └── robots.txt └── views │ ├── common │ ├── error_footer.html │ ├── error_header.html │ ├── footer_scripts.html │ └── head_tags.html │ ├── errors │ ├── 404.html │ └── 500.html │ ├── layouts │ └── master.html │ └── pages │ ├── access-denied.html │ ├── admin │ └── dashboard │ │ └── index.html │ └── app │ ├── index.html │ ├── login.html │ └── manageusers.html ├── form-fileupload ├── .gitignore ├── README.md ├── aah.project ├── app │ ├── controllers │ │ └── app.go │ ├── init.go │ ├── models │ │ └── greet.go │ └── util │ │ └── util.go ├── config │ ├── aah.conf │ ├── env │ │ ├── dev.conf │ │ └── prod.conf │ ├── routes.conf │ └── security.conf ├── go.mod ├── i18n │ └── messages.en ├── static │ ├── css │ │ └── aah.css │ ├── img │ │ ├── aah-framework-logo.png │ │ └── favicon.ico │ ├── js │ │ └── aah.js │ └── robots.txt └── views │ ├── common │ ├── error_footer.html │ ├── error_header.html │ ├── footer_scripts.html │ └── head_tags.html │ ├── errors │ ├── 404.html │ └── 500.html │ ├── layouts │ └── master.html │ └── pages │ └── app │ ├── fileupload.html │ └── index.html ├── form ├── .gitignore ├── README.md ├── aah.project ├── app │ ├── controllers │ │ └── app.go │ ├── init.go │ └── models │ │ ├── greet.go │ │ └── user.go ├── config │ ├── aah.conf │ ├── env │ │ ├── dev.conf │ │ └── prod.conf │ ├── routes.conf │ └── security.conf ├── go.mod ├── i18n │ └── messages.en ├── static │ ├── css │ │ └── aah.css │ ├── img │ │ ├── aah-framework-logo.png │ │ └── favicon.ico │ ├── js │ │ └── aah.js │ └── robots.txt └── views │ ├── common │ ├── error_footer.html │ ├── error_header.html │ ├── footer_scripts.html │ └── head_tags.html │ ├── errors │ ├── 404.html │ └── 500.html │ ├── layouts │ └── master.html │ └── pages │ └── app │ ├── index.html │ └── userprofile.html ├── i18n-url-path-param ├── .gitignore ├── README.md ├── aah.project ├── app │ ├── controllers │ │ └── app.go │ └── init.go ├── config │ ├── aah.conf │ ├── env │ │ ├── dev.conf │ │ └── prod.conf │ ├── routes.conf │ └── security.conf ├── go.mod ├── i18n │ ├── messages.de-DE │ ├── messages.en │ ├── messages.es-ES │ ├── messages.es-MX │ ├── messages.ja │ └── messages.zh-CN ├── static │ ├── css │ │ └── aah.css │ ├── img │ │ ├── aah-framework-logo.png │ │ └── favicon.ico │ ├── js │ │ └── aah.js │ └── robots.txt └── views │ ├── common │ ├── error_footer.html │ ├── error_header.html │ ├── footer_scripts.html │ └── head_tags.html │ ├── errors │ ├── 404.html │ └── 500.html │ ├── layouts │ └── master.html │ └── pages │ └── app │ └── index.html ├── i18n-url-query-param ├── .gitignore ├── README.md ├── aah.project ├── app │ ├── controllers │ │ └── app.go │ └── init.go ├── config │ ├── aah.conf │ ├── env │ │ ├── dev.conf │ │ └── prod.conf │ ├── routes.conf │ └── security.conf ├── go.mod ├── i18n │ ├── messages.de-DE │ ├── messages.en │ ├── messages.es-ES │ ├── messages.es-MX │ ├── messages.ja │ └── messages.zh-CN ├── static │ ├── css │ │ └── aah.css │ ├── img │ │ ├── aah-framework-logo.png │ │ └── favicon.ico │ ├── js │ │ └── aah.js │ └── robots.txt └── views │ ├── common │ ├── error_footer.html │ ├── error_header.html │ ├── footer_scripts.html │ └── head_tags.html │ ├── errors │ ├── 404.html │ └── 500.html │ ├── layouts │ └── master.html │ └── pages │ └── app │ └── index.html ├── oauth2-social-login ├── .gitignore ├── README.md ├── aah.project ├── app │ ├── controllers │ │ └── app.go │ ├── init.go │ ├── models │ │ └── greet.go │ └── security │ │ ├── authorization_provider.go │ │ ├── facebook │ │ └── subject_principal_provider.go │ │ ├── github │ │ └── subject_principal_provider.go │ │ ├── google │ │ └── subject_principal_provider.go │ │ └── post_auth_event.go ├── config │ ├── aah.conf │ ├── env │ │ ├── dev.conf │ │ └── prod.conf │ ├── routes.conf │ └── security.conf ├── go.mod ├── i18n │ └── messages.en ├── static │ ├── css │ │ └── aah.css │ ├── img │ │ ├── aah-framework-logo.png │ │ └── favicon.ico │ ├── js │ │ └── aah.js │ └── robots.txt └── views │ ├── common │ ├── error_footer.html │ ├── error_header.html │ ├── footer_scripts.html │ └── head_tags.html │ ├── errors │ ├── 404.html │ └── 500.html │ ├── layouts │ └── master.html │ └── pages │ └── app │ ├── index.html │ └── success.html ├── rest-api-basic-auth ├── .gitignore ├── README.md ├── aah.project ├── app │ ├── controllers │ │ ├── app.go │ │ └── info.go │ ├── init.go │ ├── models │ │ ├── greet.go │ │ └── user.go │ └── security │ │ ├── basic_authentication_provider.go │ │ └── basic_authorization_provider.go ├── config │ ├── aah.conf │ ├── env │ │ ├── dev.conf │ │ └── prod.conf │ ├── routes.conf │ └── security.conf └── go.mod ├── rest-api-jwt-auth ├── .gitignore ├── README.md ├── aah.project ├── app │ ├── controllers │ │ ├── app.go │ │ └── info.go │ ├── init.go │ ├── models │ │ ├── greet.go │ │ └── user.go │ └── security │ │ ├── authentication_provider.go │ │ ├── authorization_provider.go │ │ └── jwt.go ├── config │ ├── aah.conf │ ├── env │ │ ├── dev.conf │ │ └── prod.conf │ ├── routes.conf │ └── security.conf └── go.mod ├── rest-api ├── .gitignore ├── README.md ├── aah.project ├── app │ ├── controllers │ │ ├── app.go │ │ └── post.go │ ├── init.go │ └── models │ │ ├── greet.go │ │ └── post.go ├── config │ ├── aah.conf │ ├── env │ │ ├── dev.conf │ │ └── prod.conf │ ├── routes.conf │ └── security.conf └── go.mod └── simple-chat ├── .gitignore ├── README.md ├── aah.project ├── app ├── controllers │ └── app.go ├── init.go └── websockets │ ├── event.go │ └── simple_chat.go ├── config ├── aah.conf ├── env │ ├── dev.conf │ └── prod.conf ├── routes.conf └── security.conf ├── go.mod ├── i18n └── messages.en ├── static ├── css │ └── aah.css ├── img │ ├── aah-framework-logo.png │ ├── aah-logo-64x64.png │ └── favicon.ico ├── js │ └── aah.js └── robots.txt └── views ├── common ├── error_footer.html ├── error_header.html ├── footer_scripts.html └── head_tags.html ├── errors ├── 404.html └── 500.html ├── layouts └── master.html └── pages └── app ├── index.html └── simplechatdemo.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/README.md -------------------------------------------------------------------------------- /domain-subdomain/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/.gitignore -------------------------------------------------------------------------------- /domain-subdomain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/README.md -------------------------------------------------------------------------------- /domain-subdomain/aah.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/aah.project -------------------------------------------------------------------------------- /domain-subdomain/app/controllers/admin/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/app/controllers/admin/app.go -------------------------------------------------------------------------------- /domain-subdomain/app/controllers/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/app/controllers/app.go -------------------------------------------------------------------------------- /domain-subdomain/app/controllers/wildcard/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/app/controllers/wildcard/app.go -------------------------------------------------------------------------------- /domain-subdomain/app/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/app/init.go -------------------------------------------------------------------------------- /domain-subdomain/app/models/greet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/app/models/greet.go -------------------------------------------------------------------------------- /domain-subdomain/config/aah.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/config/aah.conf -------------------------------------------------------------------------------- /domain-subdomain/config/env/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/config/env/dev.conf -------------------------------------------------------------------------------- /domain-subdomain/config/env/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/config/env/prod.conf -------------------------------------------------------------------------------- /domain-subdomain/config/routes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/config/routes.conf -------------------------------------------------------------------------------- /domain-subdomain/config/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/config/security.conf -------------------------------------------------------------------------------- /domain-subdomain/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/go.mod -------------------------------------------------------------------------------- /domain-subdomain/i18n/messages.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/i18n/messages.en -------------------------------------------------------------------------------- /domain-subdomain/static/css/aah.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/static/css/aah.css -------------------------------------------------------------------------------- /domain-subdomain/static/img/aah-framework-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/static/img/aah-framework-logo.png -------------------------------------------------------------------------------- /domain-subdomain/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/static/img/favicon.ico -------------------------------------------------------------------------------- /domain-subdomain/static/js/aah.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /domain-subdomain/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/static/robots.txt -------------------------------------------------------------------------------- /domain-subdomain/views/common/error_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /domain-subdomain/views/common/error_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/views/common/error_header.html -------------------------------------------------------------------------------- /domain-subdomain/views/common/footer_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/views/common/footer_scripts.html -------------------------------------------------------------------------------- /domain-subdomain/views/common/head_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/views/common/head_tags.html -------------------------------------------------------------------------------- /domain-subdomain/views/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/views/errors/404.html -------------------------------------------------------------------------------- /domain-subdomain/views/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/views/errors/500.html -------------------------------------------------------------------------------- /domain-subdomain/views/layouts/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/views/layouts/master.html -------------------------------------------------------------------------------- /domain-subdomain/views/pages/admin/app/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/views/pages/admin/app/dashboard.html -------------------------------------------------------------------------------- /domain-subdomain/views/pages/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/views/pages/app/index.html -------------------------------------------------------------------------------- /domain-subdomain/views/pages/wildcard/app/entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/domain-subdomain/views/pages/wildcard/app/entry.html -------------------------------------------------------------------------------- /form-based-auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/.gitignore -------------------------------------------------------------------------------- /form-based-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/README.md -------------------------------------------------------------------------------- /form-based-auth/aah.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/aah.project -------------------------------------------------------------------------------- /form-based-auth/app/controllers/admin/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/app/controllers/admin/dashboard.go -------------------------------------------------------------------------------- /form-based-auth/app/controllers/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/app/controllers/app.go -------------------------------------------------------------------------------- /form-based-auth/app/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/app/init.go -------------------------------------------------------------------------------- /form-based-auth/app/models/greet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/app/models/greet.go -------------------------------------------------------------------------------- /form-based-auth/app/models/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/app/models/user.go -------------------------------------------------------------------------------- /form-based-auth/app/security/form_authentication_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/app/security/form_authentication_provider.go -------------------------------------------------------------------------------- /form-based-auth/app/security/form_authorization_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/app/security/form_authorization_provider.go -------------------------------------------------------------------------------- /form-based-auth/config/aah.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/config/aah.conf -------------------------------------------------------------------------------- /form-based-auth/config/env/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/config/env/dev.conf -------------------------------------------------------------------------------- /form-based-auth/config/env/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/config/env/prod.conf -------------------------------------------------------------------------------- /form-based-auth/config/routes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/config/routes.conf -------------------------------------------------------------------------------- /form-based-auth/config/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/config/security.conf -------------------------------------------------------------------------------- /form-based-auth/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/go.mod -------------------------------------------------------------------------------- /form-based-auth/i18n/messages.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/i18n/messages.en -------------------------------------------------------------------------------- /form-based-auth/static/css/aah.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/static/css/aah.css -------------------------------------------------------------------------------- /form-based-auth/static/img/aah-framework-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/static/img/aah-framework-logo.png -------------------------------------------------------------------------------- /form-based-auth/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/static/img/favicon.ico -------------------------------------------------------------------------------- /form-based-auth/static/js/aah.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /form-based-auth/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/static/robots.txt -------------------------------------------------------------------------------- /form-based-auth/views/common/error_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /form-based-auth/views/common/error_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/views/common/error_header.html -------------------------------------------------------------------------------- /form-based-auth/views/common/footer_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/views/common/footer_scripts.html -------------------------------------------------------------------------------- /form-based-auth/views/common/head_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/views/common/head_tags.html -------------------------------------------------------------------------------- /form-based-auth/views/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/views/errors/404.html -------------------------------------------------------------------------------- /form-based-auth/views/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/views/errors/500.html -------------------------------------------------------------------------------- /form-based-auth/views/layouts/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/views/layouts/master.html -------------------------------------------------------------------------------- /form-based-auth/views/pages/access-denied.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/views/pages/access-denied.html -------------------------------------------------------------------------------- /form-based-auth/views/pages/admin/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/views/pages/admin/dashboard/index.html -------------------------------------------------------------------------------- /form-based-auth/views/pages/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/views/pages/app/index.html -------------------------------------------------------------------------------- /form-based-auth/views/pages/app/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/views/pages/app/login.html -------------------------------------------------------------------------------- /form-based-auth/views/pages/app/manageusers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-based-auth/views/pages/app/manageusers.html -------------------------------------------------------------------------------- /form-fileupload/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/.gitignore -------------------------------------------------------------------------------- /form-fileupload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/README.md -------------------------------------------------------------------------------- /form-fileupload/aah.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/aah.project -------------------------------------------------------------------------------- /form-fileupload/app/controllers/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/app/controllers/app.go -------------------------------------------------------------------------------- /form-fileupload/app/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/app/init.go -------------------------------------------------------------------------------- /form-fileupload/app/models/greet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/app/models/greet.go -------------------------------------------------------------------------------- /form-fileupload/app/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/app/util/util.go -------------------------------------------------------------------------------- /form-fileupload/config/aah.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/config/aah.conf -------------------------------------------------------------------------------- /form-fileupload/config/env/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/config/env/dev.conf -------------------------------------------------------------------------------- /form-fileupload/config/env/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/config/env/prod.conf -------------------------------------------------------------------------------- /form-fileupload/config/routes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/config/routes.conf -------------------------------------------------------------------------------- /form-fileupload/config/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/config/security.conf -------------------------------------------------------------------------------- /form-fileupload/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/go.mod -------------------------------------------------------------------------------- /form-fileupload/i18n/messages.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/i18n/messages.en -------------------------------------------------------------------------------- /form-fileupload/static/css/aah.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/static/css/aah.css -------------------------------------------------------------------------------- /form-fileupload/static/img/aah-framework-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/static/img/aah-framework-logo.png -------------------------------------------------------------------------------- /form-fileupload/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/static/img/favicon.ico -------------------------------------------------------------------------------- /form-fileupload/static/js/aah.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/static/js/aah.js -------------------------------------------------------------------------------- /form-fileupload/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/static/robots.txt -------------------------------------------------------------------------------- /form-fileupload/views/common/error_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /form-fileupload/views/common/error_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/views/common/error_header.html -------------------------------------------------------------------------------- /form-fileupload/views/common/footer_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/views/common/footer_scripts.html -------------------------------------------------------------------------------- /form-fileupload/views/common/head_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/views/common/head_tags.html -------------------------------------------------------------------------------- /form-fileupload/views/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/views/errors/404.html -------------------------------------------------------------------------------- /form-fileupload/views/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/views/errors/500.html -------------------------------------------------------------------------------- /form-fileupload/views/layouts/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/views/layouts/master.html -------------------------------------------------------------------------------- /form-fileupload/views/pages/app/fileupload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/views/pages/app/fileupload.html -------------------------------------------------------------------------------- /form-fileupload/views/pages/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form-fileupload/views/pages/app/index.html -------------------------------------------------------------------------------- /form/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/.gitignore -------------------------------------------------------------------------------- /form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/README.md -------------------------------------------------------------------------------- /form/aah.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/aah.project -------------------------------------------------------------------------------- /form/app/controllers/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/app/controllers/app.go -------------------------------------------------------------------------------- /form/app/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/app/init.go -------------------------------------------------------------------------------- /form/app/models/greet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/app/models/greet.go -------------------------------------------------------------------------------- /form/app/models/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/app/models/user.go -------------------------------------------------------------------------------- /form/config/aah.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/config/aah.conf -------------------------------------------------------------------------------- /form/config/env/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/config/env/dev.conf -------------------------------------------------------------------------------- /form/config/env/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/config/env/prod.conf -------------------------------------------------------------------------------- /form/config/routes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/config/routes.conf -------------------------------------------------------------------------------- /form/config/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/config/security.conf -------------------------------------------------------------------------------- /form/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/go.mod -------------------------------------------------------------------------------- /form/i18n/messages.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/i18n/messages.en -------------------------------------------------------------------------------- /form/static/css/aah.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/static/css/aah.css -------------------------------------------------------------------------------- /form/static/img/aah-framework-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/static/img/aah-framework-logo.png -------------------------------------------------------------------------------- /form/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/static/img/favicon.ico -------------------------------------------------------------------------------- /form/static/js/aah.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /form/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/static/robots.txt -------------------------------------------------------------------------------- /form/views/common/error_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /form/views/common/error_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/views/common/error_header.html -------------------------------------------------------------------------------- /form/views/common/footer_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/views/common/footer_scripts.html -------------------------------------------------------------------------------- /form/views/common/head_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/views/common/head_tags.html -------------------------------------------------------------------------------- /form/views/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/views/errors/404.html -------------------------------------------------------------------------------- /form/views/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/views/errors/500.html -------------------------------------------------------------------------------- /form/views/layouts/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/views/layouts/master.html -------------------------------------------------------------------------------- /form/views/pages/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/views/pages/app/index.html -------------------------------------------------------------------------------- /form/views/pages/app/userprofile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/form/views/pages/app/userprofile.html -------------------------------------------------------------------------------- /i18n-url-path-param/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/.gitignore -------------------------------------------------------------------------------- /i18n-url-path-param/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/README.md -------------------------------------------------------------------------------- /i18n-url-path-param/aah.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/aah.project -------------------------------------------------------------------------------- /i18n-url-path-param/app/controllers/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/app/controllers/app.go -------------------------------------------------------------------------------- /i18n-url-path-param/app/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/app/init.go -------------------------------------------------------------------------------- /i18n-url-path-param/config/aah.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/config/aah.conf -------------------------------------------------------------------------------- /i18n-url-path-param/config/env/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/config/env/dev.conf -------------------------------------------------------------------------------- /i18n-url-path-param/config/env/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/config/env/prod.conf -------------------------------------------------------------------------------- /i18n-url-path-param/config/routes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/config/routes.conf -------------------------------------------------------------------------------- /i18n-url-path-param/config/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/config/security.conf -------------------------------------------------------------------------------- /i18n-url-path-param/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/go.mod -------------------------------------------------------------------------------- /i18n-url-path-param/i18n/messages.de-DE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/i18n/messages.de-DE -------------------------------------------------------------------------------- /i18n-url-path-param/i18n/messages.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/i18n/messages.en -------------------------------------------------------------------------------- /i18n-url-path-param/i18n/messages.es-ES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/i18n/messages.es-ES -------------------------------------------------------------------------------- /i18n-url-path-param/i18n/messages.es-MX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/i18n/messages.es-MX -------------------------------------------------------------------------------- /i18n-url-path-param/i18n/messages.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/i18n/messages.ja -------------------------------------------------------------------------------- /i18n-url-path-param/i18n/messages.zh-CN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/i18n/messages.zh-CN -------------------------------------------------------------------------------- /i18n-url-path-param/static/css/aah.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/static/css/aah.css -------------------------------------------------------------------------------- /i18n-url-path-param/static/img/aah-framework-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/static/img/aah-framework-logo.png -------------------------------------------------------------------------------- /i18n-url-path-param/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/static/img/favicon.ico -------------------------------------------------------------------------------- /i18n-url-path-param/static/js/aah.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-url-path-param/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/static/robots.txt -------------------------------------------------------------------------------- /i18n-url-path-param/views/common/error_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /i18n-url-path-param/views/common/error_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/views/common/error_header.html -------------------------------------------------------------------------------- /i18n-url-path-param/views/common/footer_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/views/common/footer_scripts.html -------------------------------------------------------------------------------- /i18n-url-path-param/views/common/head_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/views/common/head_tags.html -------------------------------------------------------------------------------- /i18n-url-path-param/views/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/views/errors/404.html -------------------------------------------------------------------------------- /i18n-url-path-param/views/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/views/errors/500.html -------------------------------------------------------------------------------- /i18n-url-path-param/views/layouts/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/views/layouts/master.html -------------------------------------------------------------------------------- /i18n-url-path-param/views/pages/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-path-param/views/pages/app/index.html -------------------------------------------------------------------------------- /i18n-url-query-param/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/.gitignore -------------------------------------------------------------------------------- /i18n-url-query-param/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/README.md -------------------------------------------------------------------------------- /i18n-url-query-param/aah.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/aah.project -------------------------------------------------------------------------------- /i18n-url-query-param/app/controllers/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/app/controllers/app.go -------------------------------------------------------------------------------- /i18n-url-query-param/app/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/app/init.go -------------------------------------------------------------------------------- /i18n-url-query-param/config/aah.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/config/aah.conf -------------------------------------------------------------------------------- /i18n-url-query-param/config/env/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/config/env/dev.conf -------------------------------------------------------------------------------- /i18n-url-query-param/config/env/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/config/env/prod.conf -------------------------------------------------------------------------------- /i18n-url-query-param/config/routes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/config/routes.conf -------------------------------------------------------------------------------- /i18n-url-query-param/config/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/config/security.conf -------------------------------------------------------------------------------- /i18n-url-query-param/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/go.mod -------------------------------------------------------------------------------- /i18n-url-query-param/i18n/messages.de-DE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/i18n/messages.de-DE -------------------------------------------------------------------------------- /i18n-url-query-param/i18n/messages.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/i18n/messages.en -------------------------------------------------------------------------------- /i18n-url-query-param/i18n/messages.es-ES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/i18n/messages.es-ES -------------------------------------------------------------------------------- /i18n-url-query-param/i18n/messages.es-MX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/i18n/messages.es-MX -------------------------------------------------------------------------------- /i18n-url-query-param/i18n/messages.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/i18n/messages.ja -------------------------------------------------------------------------------- /i18n-url-query-param/i18n/messages.zh-CN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/i18n/messages.zh-CN -------------------------------------------------------------------------------- /i18n-url-query-param/static/css/aah.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/static/css/aah.css -------------------------------------------------------------------------------- /i18n-url-query-param/static/img/aah-framework-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/static/img/aah-framework-logo.png -------------------------------------------------------------------------------- /i18n-url-query-param/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/static/img/favicon.ico -------------------------------------------------------------------------------- /i18n-url-query-param/static/js/aah.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n-url-query-param/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/static/robots.txt -------------------------------------------------------------------------------- /i18n-url-query-param/views/common/error_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /i18n-url-query-param/views/common/error_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/views/common/error_header.html -------------------------------------------------------------------------------- /i18n-url-query-param/views/common/footer_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/views/common/footer_scripts.html -------------------------------------------------------------------------------- /i18n-url-query-param/views/common/head_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/views/common/head_tags.html -------------------------------------------------------------------------------- /i18n-url-query-param/views/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/views/errors/404.html -------------------------------------------------------------------------------- /i18n-url-query-param/views/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/views/errors/500.html -------------------------------------------------------------------------------- /i18n-url-query-param/views/layouts/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/views/layouts/master.html -------------------------------------------------------------------------------- /i18n-url-query-param/views/pages/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/i18n-url-query-param/views/pages/app/index.html -------------------------------------------------------------------------------- /oauth2-social-login/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/.gitignore -------------------------------------------------------------------------------- /oauth2-social-login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/README.md -------------------------------------------------------------------------------- /oauth2-social-login/aah.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/aah.project -------------------------------------------------------------------------------- /oauth2-social-login/app/controllers/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/app/controllers/app.go -------------------------------------------------------------------------------- /oauth2-social-login/app/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/app/init.go -------------------------------------------------------------------------------- /oauth2-social-login/app/models/greet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/app/models/greet.go -------------------------------------------------------------------------------- /oauth2-social-login/app/security/authorization_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/app/security/authorization_provider.go -------------------------------------------------------------------------------- /oauth2-social-login/app/security/facebook/subject_principal_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/app/security/facebook/subject_principal_provider.go -------------------------------------------------------------------------------- /oauth2-social-login/app/security/github/subject_principal_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/app/security/github/subject_principal_provider.go -------------------------------------------------------------------------------- /oauth2-social-login/app/security/google/subject_principal_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/app/security/google/subject_principal_provider.go -------------------------------------------------------------------------------- /oauth2-social-login/app/security/post_auth_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/app/security/post_auth_event.go -------------------------------------------------------------------------------- /oauth2-social-login/config/aah.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/config/aah.conf -------------------------------------------------------------------------------- /oauth2-social-login/config/env/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/config/env/dev.conf -------------------------------------------------------------------------------- /oauth2-social-login/config/env/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/config/env/prod.conf -------------------------------------------------------------------------------- /oauth2-social-login/config/routes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/config/routes.conf -------------------------------------------------------------------------------- /oauth2-social-login/config/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/config/security.conf -------------------------------------------------------------------------------- /oauth2-social-login/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/go.mod -------------------------------------------------------------------------------- /oauth2-social-login/i18n/messages.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/i18n/messages.en -------------------------------------------------------------------------------- /oauth2-social-login/static/css/aah.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/static/css/aah.css -------------------------------------------------------------------------------- /oauth2-social-login/static/img/aah-framework-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/static/img/aah-framework-logo.png -------------------------------------------------------------------------------- /oauth2-social-login/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/static/img/favicon.ico -------------------------------------------------------------------------------- /oauth2-social-login/static/js/aah.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oauth2-social-login/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/static/robots.txt -------------------------------------------------------------------------------- /oauth2-social-login/views/common/error_footer.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oauth2-social-login/views/common/error_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/views/common/error_header.html -------------------------------------------------------------------------------- /oauth2-social-login/views/common/footer_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/views/common/footer_scripts.html -------------------------------------------------------------------------------- /oauth2-social-login/views/common/head_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/views/common/head_tags.html -------------------------------------------------------------------------------- /oauth2-social-login/views/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/views/errors/404.html -------------------------------------------------------------------------------- /oauth2-social-login/views/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/views/errors/500.html -------------------------------------------------------------------------------- /oauth2-social-login/views/layouts/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/views/layouts/master.html -------------------------------------------------------------------------------- /oauth2-social-login/views/pages/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/views/pages/app/index.html -------------------------------------------------------------------------------- /oauth2-social-login/views/pages/app/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/oauth2-social-login/views/pages/app/success.html -------------------------------------------------------------------------------- /rest-api-basic-auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/.gitignore -------------------------------------------------------------------------------- /rest-api-basic-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/README.md -------------------------------------------------------------------------------- /rest-api-basic-auth/aah.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/aah.project -------------------------------------------------------------------------------- /rest-api-basic-auth/app/controllers/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/app/controllers/app.go -------------------------------------------------------------------------------- /rest-api-basic-auth/app/controllers/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/app/controllers/info.go -------------------------------------------------------------------------------- /rest-api-basic-auth/app/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/app/init.go -------------------------------------------------------------------------------- /rest-api-basic-auth/app/models/greet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/app/models/greet.go -------------------------------------------------------------------------------- /rest-api-basic-auth/app/models/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/app/models/user.go -------------------------------------------------------------------------------- /rest-api-basic-auth/app/security/basic_authentication_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/app/security/basic_authentication_provider.go -------------------------------------------------------------------------------- /rest-api-basic-auth/app/security/basic_authorization_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/app/security/basic_authorization_provider.go -------------------------------------------------------------------------------- /rest-api-basic-auth/config/aah.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/config/aah.conf -------------------------------------------------------------------------------- /rest-api-basic-auth/config/env/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/config/env/dev.conf -------------------------------------------------------------------------------- /rest-api-basic-auth/config/env/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/config/env/prod.conf -------------------------------------------------------------------------------- /rest-api-basic-auth/config/routes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/config/routes.conf -------------------------------------------------------------------------------- /rest-api-basic-auth/config/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/config/security.conf -------------------------------------------------------------------------------- /rest-api-basic-auth/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-basic-auth/go.mod -------------------------------------------------------------------------------- /rest-api-jwt-auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/.gitignore -------------------------------------------------------------------------------- /rest-api-jwt-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/README.md -------------------------------------------------------------------------------- /rest-api-jwt-auth/aah.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/aah.project -------------------------------------------------------------------------------- /rest-api-jwt-auth/app/controllers/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/app/controllers/app.go -------------------------------------------------------------------------------- /rest-api-jwt-auth/app/controllers/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/app/controllers/info.go -------------------------------------------------------------------------------- /rest-api-jwt-auth/app/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/app/init.go -------------------------------------------------------------------------------- /rest-api-jwt-auth/app/models/greet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/app/models/greet.go -------------------------------------------------------------------------------- /rest-api-jwt-auth/app/models/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/app/models/user.go -------------------------------------------------------------------------------- /rest-api-jwt-auth/app/security/authentication_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/app/security/authentication_provider.go -------------------------------------------------------------------------------- /rest-api-jwt-auth/app/security/authorization_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/app/security/authorization_provider.go -------------------------------------------------------------------------------- /rest-api-jwt-auth/app/security/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/app/security/jwt.go -------------------------------------------------------------------------------- /rest-api-jwt-auth/config/aah.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/config/aah.conf -------------------------------------------------------------------------------- /rest-api-jwt-auth/config/env/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/config/env/dev.conf -------------------------------------------------------------------------------- /rest-api-jwt-auth/config/env/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/config/env/prod.conf -------------------------------------------------------------------------------- /rest-api-jwt-auth/config/routes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/config/routes.conf -------------------------------------------------------------------------------- /rest-api-jwt-auth/config/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/config/security.conf -------------------------------------------------------------------------------- /rest-api-jwt-auth/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api-jwt-auth/go.mod -------------------------------------------------------------------------------- /rest-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api/.gitignore -------------------------------------------------------------------------------- /rest-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api/README.md -------------------------------------------------------------------------------- /rest-api/aah.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api/aah.project -------------------------------------------------------------------------------- /rest-api/app/controllers/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api/app/controllers/app.go -------------------------------------------------------------------------------- /rest-api/app/controllers/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api/app/controllers/post.go -------------------------------------------------------------------------------- /rest-api/app/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api/app/init.go -------------------------------------------------------------------------------- /rest-api/app/models/greet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api/app/models/greet.go -------------------------------------------------------------------------------- /rest-api/app/models/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api/app/models/post.go -------------------------------------------------------------------------------- /rest-api/config/aah.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api/config/aah.conf -------------------------------------------------------------------------------- /rest-api/config/env/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api/config/env/dev.conf -------------------------------------------------------------------------------- /rest-api/config/env/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api/config/env/prod.conf -------------------------------------------------------------------------------- /rest-api/config/routes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api/config/routes.conf -------------------------------------------------------------------------------- /rest-api/config/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api/config/security.conf -------------------------------------------------------------------------------- /rest-api/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/rest-api/go.mod -------------------------------------------------------------------------------- /simple-chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/.gitignore -------------------------------------------------------------------------------- /simple-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/README.md -------------------------------------------------------------------------------- /simple-chat/aah.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/aah.project -------------------------------------------------------------------------------- /simple-chat/app/controllers/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/app/controllers/app.go -------------------------------------------------------------------------------- /simple-chat/app/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/app/init.go -------------------------------------------------------------------------------- /simple-chat/app/websockets/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/app/websockets/event.go -------------------------------------------------------------------------------- /simple-chat/app/websockets/simple_chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/app/websockets/simple_chat.go -------------------------------------------------------------------------------- /simple-chat/config/aah.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/config/aah.conf -------------------------------------------------------------------------------- /simple-chat/config/env/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/config/env/dev.conf -------------------------------------------------------------------------------- /simple-chat/config/env/prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/config/env/prod.conf -------------------------------------------------------------------------------- /simple-chat/config/routes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/config/routes.conf -------------------------------------------------------------------------------- /simple-chat/config/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/config/security.conf -------------------------------------------------------------------------------- /simple-chat/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/go.mod -------------------------------------------------------------------------------- /simple-chat/i18n/messages.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/i18n/messages.en -------------------------------------------------------------------------------- /simple-chat/static/css/aah.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/static/css/aah.css -------------------------------------------------------------------------------- /simple-chat/static/img/aah-framework-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/static/img/aah-framework-logo.png -------------------------------------------------------------------------------- /simple-chat/static/img/aah-logo-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/static/img/aah-logo-64x64.png -------------------------------------------------------------------------------- /simple-chat/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/static/img/favicon.ico -------------------------------------------------------------------------------- /simple-chat/static/js/aah.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/static/js/aah.js -------------------------------------------------------------------------------- /simple-chat/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/static/robots.txt -------------------------------------------------------------------------------- /simple-chat/views/common/error_footer.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simple-chat/views/common/error_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/views/common/error_header.html -------------------------------------------------------------------------------- /simple-chat/views/common/footer_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/views/common/footer_scripts.html -------------------------------------------------------------------------------- /simple-chat/views/common/head_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/views/common/head_tags.html -------------------------------------------------------------------------------- /simple-chat/views/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/views/errors/404.html -------------------------------------------------------------------------------- /simple-chat/views/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/views/errors/500.html -------------------------------------------------------------------------------- /simple-chat/views/layouts/master.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/views/layouts/master.html -------------------------------------------------------------------------------- /simple-chat/views/pages/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/views/pages/app/index.html -------------------------------------------------------------------------------- /simple-chat/views/pages/app/simplechatdemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-aah/examples/HEAD/simple-chat/views/pages/app/simplechatdemo.html --------------------------------------------------------------------------------