https://github.com/mazulo/validate_credit_card
This application will validate credit card numbers.
https://github.com/mazulo/validate_credit_card
Last synced: over 1 year ago
JSON representation
This application will validate credit card numbers.
- Host: GitHub
- URL: https://github.com/mazulo/validate_credit_card
- Owner: mazulo
- Created: 2017-03-04T19:48:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-06T16:13:24.000Z (over 9 years ago)
- Last Synced: 2025-01-21T12:08:50.305Z (over 1 year ago)
- Language: Python
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Validate Credit Card #
Web application to validate credit card numbers.
## Instructions
### Requirements
- Linux/MacOS
- Git
- Python 3.5.2
### Instalation
Run the following commands on your terminal:
```bash
$ git clone git@github.com:mazulo/validate_credit_card.git
$ cd validate_credit_card
$ pip install -r requirements.txt
$ python manage.py migrate
```
and then...
### Run the server
```bash
$ ./manage.py runserver
Performing system checks...
System check identified no issues (0 silenced).
March 06, 2017 - 13:10:27
Django version 1.10.5, using settings 'settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
```
### How to use
You can use it by access `http://127.0.0.1:8000/` or accessing the online version: https://validate-credit-card.herokuapp.com/
### Tests
To run the tests:
```bash
python manage.py test backend
```