{"id":20618737,"url":"https://github.com/ardeshirv/airline-ticket-management","last_synced_at":"2025-09-26T14:30:55.292Z","repository":{"id":182561745,"uuid":"651057809","full_name":"ArdeshirV/Airline-Ticket-Management","owner":"ArdeshirV","description":"Final Project of Software Engineering Internship with Go Programming Language by The Go Dragons Team","archived":false,"fork":false,"pushed_at":"2025-07-09T16:38:03.000Z","size":440,"stargazers_count":8,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-09T01:13:58.313Z","etag":null,"topics":["airline-booking","airline-management","airline-reservation","ardeshirv","docker","echo","go","golang","pdf-generation","postgresql"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":false,"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/ArdeshirV.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}},"created_at":"2023-06-08T11:56:42.000Z","updated_at":"2025-09-02T16:08:12.000Z","dependencies_parsed_at":"2023-07-20T14:45:41.950Z","dependency_job_id":null,"html_url":"https://github.com/ArdeshirV/Airline-Ticket-Management","commit_stats":null,"previous_names":["ardeshirv/final-project","ardeshirv/airline-ticket-management"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ArdeshirV/Airline-Ticket-Management","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArdeshirV%2FAirline-Ticket-Management","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArdeshirV%2FAirline-Ticket-Management/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArdeshirV%2FAirline-Ticket-Management/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArdeshirV%2FAirline-Ticket-Management/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ArdeshirV","download_url":"https://codeload.github.com/ArdeshirV/Airline-Ticket-Management/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArdeshirV%2FAirline-Ticket-Management/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277090753,"owners_count":25759209,"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","status":"online","status_checked_at":"2025-09-26T02:00:09.010Z","response_time":78,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["airline-booking","airline-management","airline-reservation","ardeshirv","docker","echo","go","golang","pdf-generation","postgresql"],"created_at":"2024-11-16T12:09:22.695Z","updated_at":"2025-09-26T14:30:55.268Z","avatar_url":"https://github.com/ArdeshirV.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Airline Ticket Management System\n### Final Project of Software Engineering Bootcamp with Go Programming Language by The Go Dragons Team\n\n## Overview\nWelcome to the **Airline Ticket Management System**! This project is designed to manage airline ticket bookings efficiently. Built using Go (Golang), it leverages modern software engineering practices to ensure robust and scalable management of airline tickets.\n\n## Features\n\n- **Booking Management**: Create, view, update, and delete airline ticket bookings.\n- **User Authentication**: Secure user login and registration system.\n- **Flight Information**: Manage flight schedules and availability.\n- **Payment Processing**: Integration with payment gateways for ticket purchases.\n- **Reporting**: Generate detailed reports on bookings and flights.\n\n## Prerequisites\n\nBefore you begin, ensure you have the following installed on your machine:\n\n- [Go](https://golang.org/dl/) (1.16 or later)\n- [MySQL](https://www.mysql.com/) or any other supported database\n- [Docker](https://www.docker.com/) (optional, for containerization)\n\n## Installation\n\n1. **Clone the repository:**\n\n    ```sh\n    git clone https://github.com/ArdeshirV/Airline-Ticket-Management.git\n    cd Airline-Ticket-Management\n    ```\n\n2. **Set up the database:**\n\n    Ensure you have a running instance of MySQL (or your preferred database).\n\n    ```sh\n    mysql -u root -p\n    CREATE DATABASE airline_ticket_management;\n    ```\n\n3. **Configure the environment:**\n\n    Create a `.env` file in the root directory and configure your database connection and other environment variables:\n\n    ```env\n    DB_USER=root\n    DB_PASSWORD=yourpassword\n    DB_NAME=airline_ticket_management\n    DB_HOST=localhost\n    DB_PORT=3306\n    ```\n\n4. **Install dependencies:**\n\n    ```sh\n    go mod tidy\n    ```\n\n5. **Run the application:**\n\n    ```sh\n    go run main.go\n    ```\n\n## Usage\n\nOnce the application is running, you can use the following endpoints to interact with the system:\n\n- **Booking Management:**\n  - `GET /bookings` - View all bookings\n  - `POST /bookings` - Create a new booking\n  - `GET /bookings/{id}` - View a specific booking\n  - `PUT /bookings/{id}` - Update a booking\n  - `DELETE /bookings/{id}` - Delete a booking\n\n- **User Authentication:**\n  - `POST /register` - Register a new user\n  - `POST /login` - Login a user\n\n- **Flight Information:**\n  - `GET /flights` - View all flights\n  - `POST /flights` - Create a new flight\n  - `GET /flights/{id}` - View a specific flight\n  - `PUT /flights/{id}` - Update a flight\n  - `DELETE /flights/{id}` - Delete a flight\n\n- **Payment Processing:**\n  - `POST /payments` - Process a payment\n\n## Testing\n\nTo run tests, use the following command:\n\n```sh\ngo test ./...\n```\n\n## Contributing\nContributions are welcome! Please fork this repository and submit pull requests. For major changes, please open an issue first to discuss what you would like to change.\n\n## License\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## Contact\nFor any questions or inquiries, please contact ArdeshirV at [e-job(at)protonmail.com](e-job@protonmail.com).\n\n\u003cp style=\"text-align: center; width: 100%; \"\u003eCopyright\u0026copy; 2023 \u003ca href=\"https://github.com/the-go-dragons\"\u003eThe Go Dragons Team\u003c/a\u003e, Licensed under MIT\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fardeshirv%2Fairline-ticket-management","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fardeshirv%2Fairline-ticket-management","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fardeshirv%2Fairline-ticket-management/lists"}