├── .env ├── .env.test ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── Procfile ├── README-PTBR.md ├── README.md ├── config ├── envUtils.js └── index.js ├── cors.js ├── cronjobs.js ├── database └── index.js ├── endpoints ├── resources │ ├── account │ │ ├── changeemail.js │ │ ├── changelanguage.js │ │ ├── changepassword.js │ │ ├── changeprivacy.js │ │ ├── changeusername.js │ │ ├── checkusername.js │ │ ├── deactivateaccount.js │ │ ├── forgotpassword.js │ │ └── getcredentials.js │ ├── action-url │ │ └── action-url-exec.js │ ├── auth │ │ ├── confirm.js │ │ ├── guard │ │ │ └── index.js │ │ ├── register.js │ │ ├── signin.js │ │ ├── signout.js │ │ └── socials │ │ │ ├── facebook │ │ │ ├── facebook.js │ │ │ └── helpers.js │ │ │ ├── github │ │ │ ├── github.js │ │ │ └── helpers.js │ │ │ └── userGetOrCreate.js │ ├── avatar │ │ ├── getuseravatar.js │ │ ├── removeavatar.js │ │ └── setuseravatar.js │ ├── curriculum │ │ ├── email.js │ │ ├── get.js │ │ ├── report.js │ │ └── save.js │ └── search │ │ ├── searchable.js │ │ └── simple.js └── routes.js ├── functions ├── actionUrl.js ├── auth.js ├── badwords │ ├── badwords.js │ └── index.js ├── cv.js ├── cvNgrams.js ├── email.js ├── encryption.js ├── index.js ├── jwt │ ├── index.js │ └── jwtRsa.js ├── mailer │ ├── helpers.js │ ├── index.js │ └── templates │ │ ├── change-email │ │ ├── html-en.hbs │ │ ├── html-fr.hbs │ │ ├── html-pt-br.hbs │ │ ├── text-en.hbs │ │ ├── text-fr.hbs │ │ └── text-pt-br.hbs │ │ ├── change-password │ │ ├── html-en.hbs │ │ ├── html-fr.hbs │ │ ├── html-pt-br.hbs │ │ ├── text-en.hbs │ │ ├── text-fr.hbs │ │ └── text-pt-br.hbs │ │ ├── change-username │ │ ├── html-en.hbs │ │ ├── html-fr.hbs │ │ ├── html-pt-br.hbs │ │ ├── text-en.hbs │ │ ├── text-fr.hbs │ │ └── text-pt-br.hbs │ │ ├── create-password │ │ ├── html-en.hbs │ │ ├── html-fr.hbs │ │ ├── html-pt-br.hbs │ │ ├── text-en.hbs │ │ ├── text-fr.hbs │ │ └── text-pt-br.hbs │ │ ├── cv-contact │ │ ├── html-en.hbs │ │ ├── html-fr.hbs │ │ ├── html-pt-br.hbs │ │ ├── text-en.hbs │ │ ├── text-fr.hbs │ │ └── text-pt-br.hbs │ │ ├── cv-report │ │ ├── html-en.hbs │ │ ├── html-fr.hbs │ │ ├── html-pt-br.hbs │ │ ├── text-en.hbs │ │ ├── text-fr.hbs │ │ └── text-pt-br.hbs │ │ ├── deactivate-account │ │ ├── html-en.hbs │ │ ├── html-fr.hbs │ │ ├── html-pt-br.hbs │ │ ├── text-en.hbs │ │ ├── text-fr.hbs │ │ └── text-pt-br.hbs │ │ ├── default │ │ ├── html-en.hbs │ │ ├── html-fr.hbs │ │ ├── html-pt-br.hbs │ │ ├── text-en.hbs │ │ ├── text-fr.hbs │ │ └── text-pt-br.hbs │ │ ├── forgotpass │ │ ├── html-en.hbs │ │ ├── html-fr.hbs │ │ ├── html-pt-br.hbs │ │ ├── text-en.hbs │ │ ├── text-fr.hbs │ │ └── text-pt-br.hbs │ │ ├── layout-en.hbs │ │ ├── layout-fr.hbs │ │ ├── layout-pt-br.hbs │ │ └── register │ │ ├── html-en.hbs │ │ ├── html-fr.hbs │ │ ├── html-pt-br.hbs │ │ ├── text-en.hbs │ │ ├── text-fr.hbs │ │ └── text-pt-br.hbs ├── ngrams.js ├── user.js └── utils.js ├── i18n ├── index.js └── messages │ ├── en.js │ ├── fr.js │ ├── index.js │ └── pt-br.js ├── index.js ├── jest.config.json ├── models ├── credentials.js ├── curriculum.js ├── cvsearchindex.js ├── forgotpass.js ├── jwtsecrets.js └── registering.js ├── nodemon.json └── package.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/.env -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/.env.test -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | tests 2 | public 3 | node_modules -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js -------------------------------------------------------------------------------- /README-PTBR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/README-PTBR.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/README.md -------------------------------------------------------------------------------- /config/envUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/config/envUtils.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/config/index.js -------------------------------------------------------------------------------- /cors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/cors.js -------------------------------------------------------------------------------- /cronjobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/cronjobs.js -------------------------------------------------------------------------------- /database/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/database/index.js -------------------------------------------------------------------------------- /endpoints/resources/account/changeemail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/account/changeemail.js -------------------------------------------------------------------------------- /endpoints/resources/account/changelanguage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/account/changelanguage.js -------------------------------------------------------------------------------- /endpoints/resources/account/changepassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/account/changepassword.js -------------------------------------------------------------------------------- /endpoints/resources/account/changeprivacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/account/changeprivacy.js -------------------------------------------------------------------------------- /endpoints/resources/account/changeusername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/account/changeusername.js -------------------------------------------------------------------------------- /endpoints/resources/account/checkusername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/account/checkusername.js -------------------------------------------------------------------------------- /endpoints/resources/account/deactivateaccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/account/deactivateaccount.js -------------------------------------------------------------------------------- /endpoints/resources/account/forgotpassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/account/forgotpassword.js -------------------------------------------------------------------------------- /endpoints/resources/account/getcredentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/account/getcredentials.js -------------------------------------------------------------------------------- /endpoints/resources/action-url/action-url-exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/action-url/action-url-exec.js -------------------------------------------------------------------------------- /endpoints/resources/auth/confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/auth/confirm.js -------------------------------------------------------------------------------- /endpoints/resources/auth/guard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/auth/guard/index.js -------------------------------------------------------------------------------- /endpoints/resources/auth/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/auth/register.js -------------------------------------------------------------------------------- /endpoints/resources/auth/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/auth/signin.js -------------------------------------------------------------------------------- /endpoints/resources/auth/signout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/auth/signout.js -------------------------------------------------------------------------------- /endpoints/resources/auth/socials/facebook/facebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/auth/socials/facebook/facebook.js -------------------------------------------------------------------------------- /endpoints/resources/auth/socials/facebook/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/auth/socials/facebook/helpers.js -------------------------------------------------------------------------------- /endpoints/resources/auth/socials/github/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/auth/socials/github/github.js -------------------------------------------------------------------------------- /endpoints/resources/auth/socials/github/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/auth/socials/github/helpers.js -------------------------------------------------------------------------------- /endpoints/resources/auth/socials/userGetOrCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/auth/socials/userGetOrCreate.js -------------------------------------------------------------------------------- /endpoints/resources/avatar/getuseravatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/avatar/getuseravatar.js -------------------------------------------------------------------------------- /endpoints/resources/avatar/removeavatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/avatar/removeavatar.js -------------------------------------------------------------------------------- /endpoints/resources/avatar/setuseravatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/avatar/setuseravatar.js -------------------------------------------------------------------------------- /endpoints/resources/curriculum/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/curriculum/email.js -------------------------------------------------------------------------------- /endpoints/resources/curriculum/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/curriculum/get.js -------------------------------------------------------------------------------- /endpoints/resources/curriculum/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/curriculum/report.js -------------------------------------------------------------------------------- /endpoints/resources/curriculum/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/curriculum/save.js -------------------------------------------------------------------------------- /endpoints/resources/search/searchable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/search/searchable.js -------------------------------------------------------------------------------- /endpoints/resources/search/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/resources/search/simple.js -------------------------------------------------------------------------------- /endpoints/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/endpoints/routes.js -------------------------------------------------------------------------------- /functions/actionUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/actionUrl.js -------------------------------------------------------------------------------- /functions/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/auth.js -------------------------------------------------------------------------------- /functions/badwords/badwords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/badwords/badwords.js -------------------------------------------------------------------------------- /functions/badwords/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/badwords/index.js -------------------------------------------------------------------------------- /functions/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/cv.js -------------------------------------------------------------------------------- /functions/cvNgrams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/cvNgrams.js -------------------------------------------------------------------------------- /functions/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/email.js -------------------------------------------------------------------------------- /functions/encryption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/encryption.js -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/jwt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/jwt/index.js -------------------------------------------------------------------------------- /functions/jwt/jwtRsa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/jwt/jwtRsa.js -------------------------------------------------------------------------------- /functions/mailer/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/helpers.js -------------------------------------------------------------------------------- /functions/mailer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/index.js -------------------------------------------------------------------------------- /functions/mailer/templates/change-email/html-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-email/html-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-email/html-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-email/html-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-email/html-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-email/html-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-email/text-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-email/text-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-email/text-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-email/text-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-email/text-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-email/text-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-password/html-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-password/html-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-password/html-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-password/html-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-password/html-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-password/html-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-password/text-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-password/text-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-password/text-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-password/text-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-password/text-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-password/text-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-username/html-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-username/html-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-username/html-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-username/html-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-username/html-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-username/html-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-username/text-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-username/text-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-username/text-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-username/text-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/change-username/text-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/change-username/text-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/create-password/html-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/create-password/html-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/create-password/html-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/create-password/html-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/create-password/html-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/create-password/html-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/create-password/text-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/create-password/text-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/create-password/text-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/create-password/text-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/create-password/text-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/create-password/text-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/cv-contact/html-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/cv-contact/html-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/cv-contact/html-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/cv-contact/html-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/cv-contact/html-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/cv-contact/html-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/cv-contact/text-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/cv-contact/text-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/cv-contact/text-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/cv-contact/text-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/cv-contact/text-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/cv-contact/text-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/cv-report/html-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/cv-report/html-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/cv-report/html-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/cv-report/html-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/cv-report/html-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/cv-report/html-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/cv-report/text-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/cv-report/text-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/cv-report/text-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/cv-report/text-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/cv-report/text-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/cv-report/text-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/deactivate-account/html-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/deactivate-account/html-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/deactivate-account/html-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/deactivate-account/html-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/deactivate-account/html-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/deactivate-account/html-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/deactivate-account/text-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/deactivate-account/text-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/deactivate-account/text-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/deactivate-account/text-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/deactivate-account/text-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/deactivate-account/text-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/default/html-en.hbs: -------------------------------------------------------------------------------- 1 | {{{body}}} -------------------------------------------------------------------------------- /functions/mailer/templates/default/html-fr.hbs: -------------------------------------------------------------------------------- 1 | {{{body}}} -------------------------------------------------------------------------------- /functions/mailer/templates/default/html-pt-br.hbs: -------------------------------------------------------------------------------- 1 | {{{body}}} -------------------------------------------------------------------------------- /functions/mailer/templates/default/text-en.hbs: -------------------------------------------------------------------------------- 1 | {{body}} -------------------------------------------------------------------------------- /functions/mailer/templates/default/text-fr.hbs: -------------------------------------------------------------------------------- 1 | {{body}} -------------------------------------------------------------------------------- /functions/mailer/templates/default/text-pt-br.hbs: -------------------------------------------------------------------------------- 1 | {{body}} -------------------------------------------------------------------------------- /functions/mailer/templates/forgotpass/html-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/forgotpass/html-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/forgotpass/html-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/forgotpass/html-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/forgotpass/html-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/forgotpass/html-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/forgotpass/text-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/forgotpass/text-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/forgotpass/text-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/forgotpass/text-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/forgotpass/text-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/forgotpass/text-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/layout-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/layout-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/layout-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/layout-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/layout-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/layout-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/register/html-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/register/html-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/register/html-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/register/html-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/register/html-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/register/html-pt-br.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/register/text-en.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/register/text-en.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/register/text-fr.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/register/text-fr.hbs -------------------------------------------------------------------------------- /functions/mailer/templates/register/text-pt-br.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/mailer/templates/register/text-pt-br.hbs -------------------------------------------------------------------------------- /functions/ngrams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/ngrams.js -------------------------------------------------------------------------------- /functions/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/user.js -------------------------------------------------------------------------------- /functions/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/functions/utils.js -------------------------------------------------------------------------------- /i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/i18n/index.js -------------------------------------------------------------------------------- /i18n/messages/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/i18n/messages/en.js -------------------------------------------------------------------------------- /i18n/messages/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/i18n/messages/fr.js -------------------------------------------------------------------------------- /i18n/messages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/i18n/messages/index.js -------------------------------------------------------------------------------- /i18n/messages/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/i18n/messages/pt-br.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/index.js -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/jest.config.json -------------------------------------------------------------------------------- /models/credentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/models/credentials.js -------------------------------------------------------------------------------- /models/curriculum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/models/curriculum.js -------------------------------------------------------------------------------- /models/cvsearchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/models/cvsearchindex.js -------------------------------------------------------------------------------- /models/forgotpass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/models/forgotpass.js -------------------------------------------------------------------------------- /models/jwtsecrets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/models/jwtsecrets.js -------------------------------------------------------------------------------- /models/registering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/models/registering.js -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cv-Keep/cvkeep-backend/HEAD/package.json --------------------------------------------------------------------------------