{"id":15137625,"url":"https://github.com/lucianosants/atomnyy-api","last_synced_at":"2026-01-19T07:32:47.493Z","repository":{"id":256836889,"uuid":"852421354","full_name":"lucianosants/atomnyy-api","owner":"lucianosants","description":"Your no-nonsense supermarket shopping list","archived":false,"fork":false,"pushed_at":"2024-10-10T18:46:04.000Z","size":147,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-12T12:21:34.556Z","etag":null,"topics":["api-rest","backend","docker","docker-compose","jwt-authentication","list","nestjs","nodejs","postgresql","shoping","shoping-list","supermarket","typeorm","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lucianosants.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-09-04T19:20:20.000Z","updated_at":"2024-10-10T18:46:09.000Z","dependencies_parsed_at":"2024-12-19T14:44:01.971Z","dependency_job_id":"44a38de5-841a-4765-b8ff-d2df0c03b501","html_url":"https://github.com/lucianosants/atomnyy-api","commit_stats":{"total_commits":26,"total_committers":1,"mean_commits":26.0,"dds":0.0,"last_synced_commit":"48a32bae3ac4a320587f9a2fda0cb468e6ee1dd7"},"previous_names":["lucianosants/atomnyy-api"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucianosants%2Fatomnyy-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucianosants%2Fatomnyy-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucianosants%2Fatomnyy-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucianosants%2Fatomnyy-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lucianosants","download_url":"https://codeload.github.com/lucianosants/atomnyy-api/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247445651,"owners_count":20939953,"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":["api-rest","backend","docker","docker-compose","jwt-authentication","list","nestjs","nodejs","postgresql","shoping","shoping-list","supermarket","typeorm","typescript"],"created_at":"2024-09-26T07:01:21.255Z","updated_at":"2026-01-19T07:32:47.487Z","avatar_url":"https://github.com/lucianosants.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Atomnyy API\n\n\n![NodeJS](https://img.shields.io/badge/node.js-6DA55F?style=for-the-badge\u0026logo=node.js\u0026logoColor=white)\n![NestJS](https://img.shields.io/badge/nestjs-%23E0234E.svg?style=for-the-badge\u0026logo=nestjs\u0026logoColor=white)\n![TypeScript](https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge\u0026logo=typescript\u0026logoColor=white)\n![Postgres](https://img.shields.io/badge/postgres-%23316192.svg?style=for-the-badge\u0026logo=postgresql\u0026logoColor=white)\n![Jest](https://img.shields.io/badge/-jest-%23C21325?style=for-the-badge\u0026logo=jest\u0026logoColor=white)\n![JWT](https://img.shields.io/badge/JWT-black?style=for-the-badge\u0026logo=JSON%20web%20tokens)\n![Swagger](https://img.shields.io/badge/-Swagger-%23Clojure?style=for-the-badge\u0026logo=swagger\u0026logoColor=white)\n\n  \nAtomnyy API is an application built with **Nest.js** and **PostgreSQL** to serve the main [Atomnyy - Lista de Compras](#). A straightforward, no-nonsense app to help you organize your supermarket shopping in a simple, direct, and intuitive way.\n\n## Technologies\n- Node.js\n- Nest.js\n- TypeScript\n- TypeORM\n- PostgreSQL\n- Docker and Compose\n- Swagger\n- Jest\n\n## Deployment\nThere is a dedicated **Dockerfile** and **docker-compose** setup to accommodate deployment on various hosting platforms.\n\n## Development\n### Requirements\n- **Node.js**\n- **Docker** and **docker-compose**\n- **Dev Containers** Visual Studio Code extension **(optional)**\n\nTo run the project locally, ensure you have [Node.js](https://nodejs.org/en), [Docker and docker-compose](https://www.docker.com/) installed and configured on your machine.\n\n### To start **local development**, run:\n\n```shell\ndocker compose -f .devcontainer/docker-compose.yml up -d\ndocker compose -f .devcontainer/docker-compose.yml exec api sh bin/setup\ndocker compose -f .devcontainer/docker-compose.yml exec api sh bin/dev\n\n```\n\nThese commands will spin up the necessary **containers** and **images** to run the application in **development mode**, create **database migrations**, and **start** the **Nest.js development server**. After that, access the **API** at `localhost` on port `3000`.\n\n\n## Dev Containers\nIn **IDEs** that support **Development Containers**, such as **Visual Studio Code**, you can start the application locally using the [Dev Containers extension](https://containers.dev/supporting#dev-containers). The build commands should run automatically, utilizing the **integrated terminal**.\n\n\n## Running Tests\n**Unit** and **e2e testing** support is available in this project. You can run the following commands:\n\n```shell\ndocker compose -f .devcontainer/docker-compose.yml exec api sh bin/test-unit\ndocker compose -f .devcontainer/docker-compose.yml exec api sh bin/test-e2e\n\n```\n\n\n## Contributing\n\nSee something that can be added or improved? Feel free to **contribute**! You can **fork** the project and submit a **pull request**.\n\n\n## License\nThis project is licensed under the MIT License - see the [LICENSE](./LICENSE) file for details.\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucianosants%2Fatomnyy-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flucianosants%2Fatomnyy-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucianosants%2Fatomnyy-api/lists"}