{"id":25495252,"url":"https://github.com/jt11-11/blocktix_","last_synced_at":"2026-04-18T17:31:40.011Z","repository":{"id":278203453,"uuid":"932033583","full_name":"JT11-11/BlockTix_","owner":"JT11-11","description":"BlockTix is a next-generation event ticketing platform built on blockchain technology","archived":false,"fork":false,"pushed_at":"2025-02-18T14:19:29.000Z","size":311,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-18T15:28:18.928Z","etag":null,"topics":["aws","aws-rds","aws-s3","blockchain","google-cloud","mindee-api","smtp","solidity"],"latest_commit_sha":null,"homepage":"https://blocktixnew.vercel.app","language":"HTML","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/JT11-11.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":"2025-02-13T08:58:37.000Z","updated_at":"2025-02-18T14:19:36.000Z","dependencies_parsed_at":"2025-02-18T15:40:53.270Z","dependency_job_id":null,"html_url":"https://github.com/JT11-11/BlockTix_","commit_stats":null,"previous_names":["jt11-11/blocktix_"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JT11-11%2FBlockTix_","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JT11-11%2FBlockTix_/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JT11-11%2FBlockTix_/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JT11-11%2FBlockTix_/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JT11-11","download_url":"https://codeload.github.com/JT11-11/BlockTix_/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239573242,"owners_count":19661492,"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":["aws","aws-rds","aws-s3","blockchain","google-cloud","mindee-api","smtp","solidity"],"created_at":"2025-02-19T00:25:17.406Z","updated_at":"2025-11-09T12:30:14.244Z","avatar_url":"https://github.com/JT11-11.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BlockTix - Blockchain-Powered Event Ticketing Platform\n\n## About BlockTix\n\nBlockTix is a next-generation event ticketing platform built on blockchain technology. Our platform combines the security and transparency of blockchain with a user-friendly interface to revolutionize how event tickets are bought, sold, and verified.\n\n### Key Features\n\n- **Blockchain-Powered Tickets**: Each ticket is minted as an NFT on the Ethereum blockchain\n- **Secure Two-Factor Authentication**: Email verification codes protect user accounts\n- **ID Verification**: Advanced identity verification using Mindee AI\n- **QR Code Ticket Verification**: Easy venue entry with secure QR code scanning\n- **Eco-Friendly Events**: Support and highlight sustainable event practices\n- **Promotions System**: Special offers and event promotions for users\n\n## Technology Stack\n\n- **Backend**: Flask 3.0\n- **Database**: SQLAlchemy with PostgreSQL on AWS RDS\n- **Image Storage**: AWS S3 Bucket\n- **Blockchain**: Solidity on the Ethereum (Sepolia testnet)\n- **Blockchain Node**: Google Web3 Live Node\n- **Frontend**: TailwindCSS, JavaScript\n- **Authentication**: Custom email verification system using Gmail SMTP\n- **Identity Verification**: Mindee API\n- **Deployment**: Vercel with Serverless Functions (Taken done due to cloud costs of the AWS and APIs)\n\n## Getting Started\n\n### Prerequisites\n\n- Python 3.9+\n- PostgreSQL (for production) \n- Ethereum wallet with Sepolia testnet ETH (for contract deployment)\n\n### Environment Setup\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/your-username/blocktix.git\n    ```\n2. Create and activate a virtual environment:\n   ```bash\n    python -m venv venv\n    source venv/bin/activate  # On Windows: venv\\Scripts\\activate\n    ```\n3. Install dependencies:\n   ```bash\n    pip install -r requirements.txt\n    ```\n4. Create a .env file with the following variables:\n   ```bash\n    FLASK_APP=main.py\n    FLASK_ENV=development\n    SECRET_KEY=your-secret-key-change-this\n\n    DATABASE_URL=\n\n    EMAIL_USER=\n    EMAIL_PASSWORD=\n    MINDEE_API_KEY=\n\n    RECAPTCHA_SITE_KEY=\n    RECAPTCHA_SECRET_KEY=\n\n    AWS_ACCESS_KEY_ID=\n    AWS_SECRET_ACCESS_KEY=\n    AWS_S3_BUCKET=\n    AWS_REGION=\n\n    WEB3_PROVIDER_URI=\n    CONTRACT_ADDRESS=\n    CONTRACT_ABI_PATH=\n    PRIVATE_KEY=\n\n    UPLOAD_FOLDER=\n    MAX_CONTENT_LENGTH=\n    ALLOWED_EXTENSIONS=\n\n    DB_USER = \n    DB_PASSWORD = \n    DB_HOST = \n    DB_NAME = \n    ```\n### Project Structure\n```bash\nblocktix/\n├── src/                   # Application source code\n│   ├── Database/          # Database models and configuration\n│   ├── Routes/            # API and web routes\n│   ├── Templates/         # HTML templates\n│   ├── Static/            # Static assets (CSS, JS, images)\n│   ├── Utlis/             # Utility functions and helpers\n│   │   └── web3_config.py # Blockchain configuration\n│   └── main.py            # Application entry point\n├── scripts/               # Helper scripts\n├── tests/                 # Unit and integration tests\n├── vercel.json            # Vercel configuration\n├── requirements.txt       # Python dependencies\n└── README.md              # Project documentation\n```\n\n## License\n\nDistributed under the MIT License. See [LICENSE](LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjt11-11%2Fblocktix_","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjt11-11%2Fblocktix_","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjt11-11%2Fblocktix_/lists"}