The Live CC Generator, a Python-based tool with Flask framework hosted on Vercel, simplifies the creation of random credit card numbers. Ideal for developers, testers, and educators, it offers a hands-on experience for understanding credit card systems and security measures in a user-friendly manner.
Install Python v3
pip install -r requirements.txt
git clone https://github.com/Abhay2342/live_cc_generator.git
cd live_cc_generator
set FLASK_APP=app.py
set FLASK_EVN=development
flask run
Important
For local testing, update the file path from /tmp/cards.txt
to either ./static/cards.txt
or include a dot (.)
before /tmp/cards.txt
like this: ./tmp/cards.txt
. Additionally, ensure that all paths are modified consistently throughout the codebase before committing changes or creating a pull request to avoid conflicts in the production environment.
First off, thanks for taking the time to contribute! 🎉🎉
When contributing to this repository, please first discuss the change you wish to make via issue with the maintainers of this repository before making a change. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
- Solve the issues which are listed.
- Create your own issue and then send PR.
Please refer to the project's style and contribution guidelines for submitting patches and additions. In general, we follow the "fork-and-pull" Git workflow. The basic workflow:
- Fork the repo on GitHub
- Clone the project to your own machine
- Create a branch and name it with the
issue number
- Commit changes to the branch
- Push your work back to your fork
- Rebase your branch with the master branch
- Submit your Pull Request so that we can review it
Please submit your issues and pull request while following the automated template. During the contributing phase abide by the Contributing Guidelines.