Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aviaryan/footballers-arena
Application to display footballers profiles with ratings and other cool stats
https://github.com/aviaryan/footballers-arena
Last synced: 3 days ago
JSON representation
Application to display footballers profiles with ratings and other cool stats
- Host: GitHub
- URL: https://github.com/aviaryan/footballers-arena
- Owner: aviaryan
- Created: 2017-11-18T06:52:21.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-24T11:20:05.000Z (almost 7 years ago)
- Last Synced: 2024-08-02T13:34:45.825Z (3 months ago)
- Language: Python
- Homepage:
- Size: 2.81 MB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Footballers
## Requirements
* Python 3.5
* `pip install -r requirements.txt`## Features
Apart from the minimum features mentioned in the requirements, this application contains the following extra features.
1. Filter players by name
2. Player details opens on row click
3. Player detail shows all stats
4. Player details shows player's photo. It shows a placeholder where picture is missing.
5. Custom About page that links to my portfolio.
6. Custom Favicon added.
7. Unit tests have been written.## Running the project
```sh
# clone or download the project and get the terminal to its folder# install deps
pip install -r requirements.txt# switch to the project
cd footballers/# create database with tables
python manage.py migrate# optional step to create super user
python manage.py createsuperuser # OPTIONAL test test1234# load initial data
python load_initial_data.py# run the server
python manage.py runserver
# go to localhost:8000 and enjoy!
```## Updating / Saving DB Changes
```sh
python manage.py makemigrations backend
python manage.py migrate
```## Running Tests
```sh
python manage.py test
# or
python manage.py test backend
python manage.py test frontend
```-----
## Screenshots
![](https://i.imgur.com/uRqnYof.png)
![](https://i.imgur.com/P134I1j.png)
![](https://i.imgur.com/CtzhD45.png)