{"id":21967509,"url":"https://github.com/droffilc1/alx-files_manager","last_synced_at":"2026-04-09T23:34:02.484Z","repository":{"id":246487817,"uuid":"821276007","full_name":"droffilc1/alx-files_manager","owner":"droffilc1","description":"This project is a summary of this back-end trimester: authentication, NodeJS, MongoDB, Redis, pagination and background processing","archived":false,"fork":false,"pushed_at":"2024-07-16T14:31:23.000Z","size":61,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-28T01:45:27.191Z","etag":null,"topics":["backend","es6","expressjs","javascript","kue","mongodb","nodejs","nosql","redis"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/droffilc1.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-28T07:26:06.000Z","updated_at":"2024-12-16T07:00:03.000Z","dependencies_parsed_at":"2024-06-28T08:58:41.584Z","dependency_job_id":"8f9c8bd8-adfc-486a-952e-74963f1e4b4e","html_url":"https://github.com/droffilc1/alx-files_manager","commit_stats":null,"previous_names":["droffilc1/alx-files_manager"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/droffilc1%2Falx-files_manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/droffilc1%2Falx-files_manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/droffilc1%2Falx-files_manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/droffilc1%2Falx-files_manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/droffilc1","download_url":"https://codeload.github.com/droffilc1/alx-files_manager/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245026041,"owners_count":20549072,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backend","es6","expressjs","javascript","kue","mongodb","nodejs","nosql","redis"],"created_at":"2024-11-29T13:28:08.792Z","updated_at":"2026-04-09T23:34:02.445Z","avatar_url":"https://github.com/droffilc1.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Project: 0x04. Files manager\n\nThis project is a summary of this back-end trimester: authentication, NodeJS, MongoDB, Redis, pagination and background processing.\n\nThe objective is to build a simple platform to upload and view files:\n\n- User authentication via a token\n- List all files\n- Upload a new file\n- Change permission of a file\n- View a file\n- Generate thumbnails for images\n\n## Resources\n\n#### Read or watch:\n\n- [Node JS getting started](https://intranet.alxswe.com/rltoken/buFPHJYnZjtOrTd610j6Og)\n- [Process API doc](https://intranet.alxswe.com/rltoken/uYPplj2cPK8pcP0LtV6RuA)\n- [Express getting started](https://intranet.alxswe.com/rltoken/SujfeWKCWmUMomfETjETEg)\n- [Mocha documentation](https://intranet.alxswe.com/rltoken/FzEwplmoZiyGvkgKllZNJw)\n- [Nodemon documentation](https://intranet.alxswe.com/rltoken/pdNNTX0OLugbhxvP3sLgOw)\n- [MongoDB](https://intranet.alxswe.com/rltoken/g1x7y_3GskzVAJBTXcSjmA)\n- [Bull](https://intranet.alxswe.com/rltoken/NkHBpGrxnd0sK_fDPMbihg)\n- [Image thumbnail](https://intranet.alxswe.com/rltoken/KX6cck2nyLpQOTDMLcwxLg)\n- [Mime-Types](https://intranet.alxswe.com/rltoken/j9B0Kc-4HDKLUe88ShbOjQ)\n- [Redis](https://intranet.alxswe.com/rltoken/nqwKRszO8Tkj_ZWW1EFwGw)\n\n## Tasks\n\n| Task                         | File                                                                                                                                                                         |\n| ---------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 0. Redis utils               | [utils/redis.js](./utils/redis.js)                                                                                                                                           |\n| 1. MongoDB utils             | [utils/db.js](./utils/db.js)                                                                                                                                                 |\n| 2. First API                 | [server.js,routes/index.js,controllers/AppController.js](./server.js,./routes/index.js,controllers/AppController)                                                            |\n| 3. Create a new user         | [utils/,routes/index.js,controllers/UsersController.js](./utils/,routes/index.js,controllers/UsersController.js)                                                             |\n| 4. Authenticate a user       | [utils/,routes/index.js,controllers/UsersController.js,controllers/AuthController.js](./utils/,routes/index.js,controllers/UsersController.js,controllers/AuthController.js) |\n| 5. First file                | [utils/,routes/index.js,controllers/FilesController.js](./utils/,routes/index.js,controllers/FilesController.js)                                                             |\n| 6. Get and list file         | [utils/,routes/index.js,controllers/FilesController.js](./utils/,routes/index.js,controllers/FilesController.js)                                                             |\n| 7. File publish/unpublish    | [utils/,routes/index.js,controllers/FilesController.js](./utils/,routes/index.js,controllers/FilesController.js)                                                             |\n| 8. File data                 | [utils/,routes/index.js,controllers/FilesController.js](./utils/,routes/index.js,controllers/FilesController.js)                                                             |\n| 9. Image Thumbnails          | [utils/,controllers/FilesController.js,worker.js](./utils/,controllers/FilesController.js,worker.js)                                                                         |\n| 10. Tests!                   | [tests/](./tests/)                                                                                                                                                           |\n| 11. New user - welcome email | [utils/,worker.js,controllers/UsersController.js](./utils/,worker.js,controllers/UsersController.js)                                                                         |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdroffilc1%2Falx-files_manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdroffilc1%2Falx-files_manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdroffilc1%2Falx-files_manager/lists"}