├── .github ├── admin.gif ├── admin_badge.png ├── chef.png ├── main.gif └── welcome_email.png ├── .gitignore ├── LICENSE ├── README.md ├── foodfy.sql ├── package.json ├── public ├── assets │ ├── chef.png │ ├── favicon.ico │ ├── logo.png │ └── logo_admin.png ├── images │ ├── .gitignore │ ├── chef_placeholder.png │ ├── chef_placeholder_backup.png │ ├── recipe_placeholder.png │ └── recipe_placeholder_backup.png ├── scripts │ ├── hideRecipeContent.js │ ├── index.js │ ├── pagination.js │ ├── photosUpload.js │ └── redirect.js └── styles │ ├── admin │ ├── forms.css │ └── index.css │ ├── chefs │ ├── chef-profile.css │ └── chefs-list.css │ ├── global.css │ ├── main │ ├── about.css │ └── index.css │ ├── recipes │ ├── recipe-page.css │ └── recipes-list.css │ ├── sessions │ └── index.css │ └── users │ └── list.css ├── seed.js └── src ├── app ├── controllers │ ├── ChefController.js │ ├── HomeController.js │ ├── ProfileController.js │ ├── RecipeController.js │ ├── SessionController.js │ └── UserController.js ├── middlewares │ ├── multer.js │ └── sessions.js ├── models │ ├── Base.js │ ├── Chef.js │ ├── File.js │ ├── Recipe.js │ ├── RecipeFile.js │ └── User.js ├── services │ ├── LoadChefService.js │ └── LoadRecipeService.js ├── validators │ ├── chef.js │ ├── profile.js │ ├── recipe.js │ ├── session.js │ └── user.js └── views │ ├── admin │ ├── chefs │ │ ├── create.njk │ │ ├── edit.njk │ │ ├── index.njk │ │ └── show.njk │ └── recipes │ │ ├── create.njk │ │ ├── edit.njk │ │ ├── index.njk │ │ └── show.njk │ ├── main │ ├── about.njk │ ├── chef-profile.njk │ ├── chefs.njk │ ├── index.njk │ ├── recipe-page.njk │ ├── recipes.njk │ └── search-result.njk │ ├── session │ ├── forgot-password.njk │ ├── login.njk │ └── password-reset.njk │ ├── templates │ ├── includes │ │ ├── chefs │ │ │ └── chefs-fields.njk │ │ ├── head-content.njk │ │ ├── links-admin.njk │ │ ├── links-main.njk │ │ ├── messages.njk │ │ ├── pagination.njk │ │ ├── recipes │ │ │ ├── field-options.njk │ │ │ ├── recipe-card.njk │ │ │ ├── recipes-fields.njk │ │ │ └── search.njk │ │ ├── sessions │ │ │ ├── login-fields.njk │ │ │ └── reset-fields.njk │ │ └── users │ │ │ ├── fields.njk │ │ │ └── profile-fields.njk │ ├── layouts │ │ ├── admin.njk │ │ └── main.njk │ └── macros │ │ ├── chef-content.njk │ │ ├── chefs-list.njk │ │ └── recipe-content.njk │ └── users │ ├── edit.njk │ ├── index.njk │ ├── list.njk │ └── register.njk ├── config ├── db.js └── session.js ├── lib ├── mailer.js └── utils.js ├── routes ├── chefs.js ├── index.js ├── main.js ├── recipes.js └── users.js └── server.js /.github/admin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/.github/admin.gif -------------------------------------------------------------------------------- /.github/admin_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/.github/admin_badge.png -------------------------------------------------------------------------------- /.github/chef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/.github/chef.png -------------------------------------------------------------------------------- /.github/main.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/.github/main.gif -------------------------------------------------------------------------------- /.github/welcome_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/.github/welcome_email.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/README.md -------------------------------------------------------------------------------- /foodfy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/foodfy.sql -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/chef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/assets/chef.png -------------------------------------------------------------------------------- /public/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/assets/favicon.ico -------------------------------------------------------------------------------- /public/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/assets/logo.png -------------------------------------------------------------------------------- /public/assets/logo_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/assets/logo_admin.png -------------------------------------------------------------------------------- /public/images/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/images/.gitignore -------------------------------------------------------------------------------- /public/images/chef_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/images/chef_placeholder.png -------------------------------------------------------------------------------- /public/images/chef_placeholder_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/images/chef_placeholder_backup.png -------------------------------------------------------------------------------- /public/images/recipe_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/images/recipe_placeholder.png -------------------------------------------------------------------------------- /public/images/recipe_placeholder_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/images/recipe_placeholder_backup.png -------------------------------------------------------------------------------- /public/scripts/hideRecipeContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/scripts/hideRecipeContent.js -------------------------------------------------------------------------------- /public/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/scripts/index.js -------------------------------------------------------------------------------- /public/scripts/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/scripts/pagination.js -------------------------------------------------------------------------------- /public/scripts/photosUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/scripts/photosUpload.js -------------------------------------------------------------------------------- /public/scripts/redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/scripts/redirect.js -------------------------------------------------------------------------------- /public/styles/admin/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/styles/admin/forms.css -------------------------------------------------------------------------------- /public/styles/admin/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/styles/admin/index.css -------------------------------------------------------------------------------- /public/styles/chefs/chef-profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/styles/chefs/chef-profile.css -------------------------------------------------------------------------------- /public/styles/chefs/chefs-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/styles/chefs/chefs-list.css -------------------------------------------------------------------------------- /public/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/styles/global.css -------------------------------------------------------------------------------- /public/styles/main/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/styles/main/about.css -------------------------------------------------------------------------------- /public/styles/main/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/styles/main/index.css -------------------------------------------------------------------------------- /public/styles/recipes/recipe-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/styles/recipes/recipe-page.css -------------------------------------------------------------------------------- /public/styles/recipes/recipes-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/styles/recipes/recipes-list.css -------------------------------------------------------------------------------- /public/styles/sessions/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/styles/sessions/index.css -------------------------------------------------------------------------------- /public/styles/users/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/public/styles/users/list.css -------------------------------------------------------------------------------- /seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/seed.js -------------------------------------------------------------------------------- /src/app/controllers/ChefController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/controllers/ChefController.js -------------------------------------------------------------------------------- /src/app/controllers/HomeController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/controllers/HomeController.js -------------------------------------------------------------------------------- /src/app/controllers/ProfileController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/controllers/ProfileController.js -------------------------------------------------------------------------------- /src/app/controllers/RecipeController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/controllers/RecipeController.js -------------------------------------------------------------------------------- /src/app/controllers/SessionController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/controllers/SessionController.js -------------------------------------------------------------------------------- /src/app/controllers/UserController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/controllers/UserController.js -------------------------------------------------------------------------------- /src/app/middlewares/multer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/middlewares/multer.js -------------------------------------------------------------------------------- /src/app/middlewares/sessions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/middlewares/sessions.js -------------------------------------------------------------------------------- /src/app/models/Base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/models/Base.js -------------------------------------------------------------------------------- /src/app/models/Chef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/models/Chef.js -------------------------------------------------------------------------------- /src/app/models/File.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/models/File.js -------------------------------------------------------------------------------- /src/app/models/Recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/models/Recipe.js -------------------------------------------------------------------------------- /src/app/models/RecipeFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/models/RecipeFile.js -------------------------------------------------------------------------------- /src/app/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/models/User.js -------------------------------------------------------------------------------- /src/app/services/LoadChefService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/services/LoadChefService.js -------------------------------------------------------------------------------- /src/app/services/LoadRecipeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/services/LoadRecipeService.js -------------------------------------------------------------------------------- /src/app/validators/chef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/validators/chef.js -------------------------------------------------------------------------------- /src/app/validators/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/validators/profile.js -------------------------------------------------------------------------------- /src/app/validators/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/validators/recipe.js -------------------------------------------------------------------------------- /src/app/validators/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/validators/session.js -------------------------------------------------------------------------------- /src/app/validators/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/validators/user.js -------------------------------------------------------------------------------- /src/app/views/admin/chefs/create.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/admin/chefs/create.njk -------------------------------------------------------------------------------- /src/app/views/admin/chefs/edit.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/admin/chefs/edit.njk -------------------------------------------------------------------------------- /src/app/views/admin/chefs/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/admin/chefs/index.njk -------------------------------------------------------------------------------- /src/app/views/admin/chefs/show.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/admin/chefs/show.njk -------------------------------------------------------------------------------- /src/app/views/admin/recipes/create.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/admin/recipes/create.njk -------------------------------------------------------------------------------- /src/app/views/admin/recipes/edit.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/admin/recipes/edit.njk -------------------------------------------------------------------------------- /src/app/views/admin/recipes/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/admin/recipes/index.njk -------------------------------------------------------------------------------- /src/app/views/admin/recipes/show.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/admin/recipes/show.njk -------------------------------------------------------------------------------- /src/app/views/main/about.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/main/about.njk -------------------------------------------------------------------------------- /src/app/views/main/chef-profile.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/main/chef-profile.njk -------------------------------------------------------------------------------- /src/app/views/main/chefs.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/main/chefs.njk -------------------------------------------------------------------------------- /src/app/views/main/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/main/index.njk -------------------------------------------------------------------------------- /src/app/views/main/recipe-page.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/main/recipe-page.njk -------------------------------------------------------------------------------- /src/app/views/main/recipes.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/main/recipes.njk -------------------------------------------------------------------------------- /src/app/views/main/search-result.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/main/search-result.njk -------------------------------------------------------------------------------- /src/app/views/session/forgot-password.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/session/forgot-password.njk -------------------------------------------------------------------------------- /src/app/views/session/login.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/session/login.njk -------------------------------------------------------------------------------- /src/app/views/session/password-reset.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/session/password-reset.njk -------------------------------------------------------------------------------- /src/app/views/templates/includes/chefs/chefs-fields.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/includes/chefs/chefs-fields.njk -------------------------------------------------------------------------------- /src/app/views/templates/includes/head-content.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/includes/head-content.njk -------------------------------------------------------------------------------- /src/app/views/templates/includes/links-admin.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/includes/links-admin.njk -------------------------------------------------------------------------------- /src/app/views/templates/includes/links-main.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/includes/links-main.njk -------------------------------------------------------------------------------- /src/app/views/templates/includes/messages.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/includes/messages.njk -------------------------------------------------------------------------------- /src/app/views/templates/includes/pagination.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/includes/pagination.njk -------------------------------------------------------------------------------- /src/app/views/templates/includes/recipes/field-options.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/includes/recipes/field-options.njk -------------------------------------------------------------------------------- /src/app/views/templates/includes/recipes/recipe-card.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/includes/recipes/recipe-card.njk -------------------------------------------------------------------------------- /src/app/views/templates/includes/recipes/recipes-fields.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/includes/recipes/recipes-fields.njk -------------------------------------------------------------------------------- /src/app/views/templates/includes/recipes/search.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/includes/recipes/search.njk -------------------------------------------------------------------------------- /src/app/views/templates/includes/sessions/login-fields.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/includes/sessions/login-fields.njk -------------------------------------------------------------------------------- /src/app/views/templates/includes/sessions/reset-fields.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/includes/sessions/reset-fields.njk -------------------------------------------------------------------------------- /src/app/views/templates/includes/users/fields.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/includes/users/fields.njk -------------------------------------------------------------------------------- /src/app/views/templates/includes/users/profile-fields.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/includes/users/profile-fields.njk -------------------------------------------------------------------------------- /src/app/views/templates/layouts/admin.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/layouts/admin.njk -------------------------------------------------------------------------------- /src/app/views/templates/layouts/main.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/layouts/main.njk -------------------------------------------------------------------------------- /src/app/views/templates/macros/chef-content.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/macros/chef-content.njk -------------------------------------------------------------------------------- /src/app/views/templates/macros/chefs-list.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/macros/chefs-list.njk -------------------------------------------------------------------------------- /src/app/views/templates/macros/recipe-content.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/templates/macros/recipe-content.njk -------------------------------------------------------------------------------- /src/app/views/users/edit.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/users/edit.njk -------------------------------------------------------------------------------- /src/app/views/users/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/users/index.njk -------------------------------------------------------------------------------- /src/app/views/users/list.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/users/list.njk -------------------------------------------------------------------------------- /src/app/views/users/register.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/app/views/users/register.njk -------------------------------------------------------------------------------- /src/config/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/config/db.js -------------------------------------------------------------------------------- /src/config/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/config/session.js -------------------------------------------------------------------------------- /src/lib/mailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/lib/mailer.js -------------------------------------------------------------------------------- /src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/lib/utils.js -------------------------------------------------------------------------------- /src/routes/chefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/routes/chefs.js -------------------------------------------------------------------------------- /src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/routes/index.js -------------------------------------------------------------------------------- /src/routes/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/routes/main.js -------------------------------------------------------------------------------- /src/routes/recipes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/routes/recipes.js -------------------------------------------------------------------------------- /src/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/routes/users.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martins-rafael/foodfy/HEAD/src/server.js --------------------------------------------------------------------------------