{"id":28202323,"url":"https://github.com/andrewsy1004/back-cinenow","last_synced_at":"2026-04-18T17:31:48.104Z","repository":{"id":292184761,"uuid":"973923553","full_name":"Andrewsy1004/Back-CineNow","owner":"Andrewsy1004","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-08T14:44:07.000Z","size":13802,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-17T00:13:20.822Z","etag":null,"topics":["docker","env","jwt","nestjs","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/Andrewsy1004.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,"zenodo":null}},"created_at":"2025-04-28T01:55:56.000Z","updated_at":"2025-05-08T14:44:11.000Z","dependencies_parsed_at":"2025-05-08T15:49:35.571Z","dependency_job_id":null,"html_url":"https://github.com/Andrewsy1004/Back-CineNow","commit_stats":null,"previous_names":["andrewsy1004/back-cinenow"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Andrewsy1004/Back-CineNow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrewsy1004%2FBack-CineNow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrewsy1004%2FBack-CineNow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrewsy1004%2FBack-CineNow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrewsy1004%2FBack-CineNow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Andrewsy1004","download_url":"https://codeload.github.com/Andrewsy1004/Back-CineNow/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrewsy1004%2FBack-CineNow/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259567131,"owners_count":22877645,"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":["docker","env","jwt","nestjs","typescript"],"created_at":"2025-05-17T00:12:49.490Z","updated_at":"2026-04-18T17:31:48.054Z","avatar_url":"https://github.com/Andrewsy1004.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CineNow Backend\r\n\r\n\u003cp align=\"center\"\u003e\r\n  \u003ca href=\"http://nestjs.com/\" target=\"blank\"\u003e\u003cimg src=\"https://nestjs.com/img/logo-small.svg\" width=\"200\" alt=\"Nest Logo\" /\u003e\u003c/a\u003e\r\n\u003c/p\u003e\r\n\r\nA comprehensive cinema management system built with NestJS, featuring movie management, seat booking, user authentication, and administrative tools.\r\n\r\n## 🎯 Features\r\n\r\n- **Movie Management**: Add, update, and manage movie listings\r\n- **User Authentication**: Secure login and registration system\r\n- **Admin Dashboard**: Complete administrative control panel\r\n- **Statistics \u0026 Analytics**: Detailed reports and insights\r\n- **PostgreSQL Database**: Robust data management\r\n- **RESTful API**: Well-structured API endpoints\r\n\r\n## 🏗️ Project Structure\r\n\r\n```\r\nbackend/\r\n├── dist/                     # Compiled JavaScript files\r\n├── node_modules/             # Dependencies\r\n├── postgres/                 # PostgreSQL configuration\r\n└── src/                      # Source code\r\n    ├── auth/                 # Authentication module\r\n    │   └── [auth logic]\r\n    ├── config/               # Configuration files\r\n    ├── Constant/             # Application constants\r\n    ├── movies/               # Movie management module\r\n    │   └── [movie logic]\r\n    ├── seed/                 # Database seeding\r\n    ├── test/                 # Test files\r\n    ├── app.module.ts         # Main application module\r\n    └── main.ts               # Application entry point\r\n```\r\n\r\n## 🚀 Getting Started\r\n\r\n### Prerequisites\r\n\r\n- Node.js (v16 or higher)\r\n- PostgreSQL\r\n- npm or yarn\r\n\r\n### Installation\r\n\r\n1. **Clone the repository**\r\n   ```bash\r\n   git clone \u003chttps://github.com/Andrewsy1004/Back-CineNow.git\u003e\r\n   ```\r\n\r\n2. **Install dependencies**\r\n   ```bash\r\n   npm install\r\n   ```\r\n\r\n3. **Environment Configuration**\r\n   ```bash\r\n   cp .env.template .env\r\n   ```\r\n   Configure your environment variables in `.env`:\r\n   ```env\r\n   DATABASE_URL   = postgresql://username:password@localhost:5432/cinema_db\r\n   JWT_SECRET     = your-jwt-secret\r\n   PORT           = 3000\r\n   ```\r\n\r\n4. **Database Setup**\r\n   ```bash\r\n   # Start PostgreSQL with Docker\r\n   docker-compose up -d \r\n   ```\r\n\r\n5. **Start the application**\r\n   ```bash\r\n   # Development mode\r\n   npm run start:dev\r\n   \r\n   # Production mode\r\n   npm run start:prod\r\n   ```\r\n\r\n\r\n## 🤝 Contributing\r\n\r\n1. Fork the repository\r\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\r\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\r\n4. Push to the branch (`git push origin feature/amazing-feature`)\r\n5. Open a Pull Request\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewsy1004%2Fback-cinenow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrewsy1004%2Fback-cinenow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewsy1004%2Fback-cinenow/lists"}