Project requirement: To create a web application that compares two excel files
The goal of the project is to provide a simple user friendly platform that would enable users to easily compare excel files, see the differences that exist in both files, make simple changes and export their results.
-
Option to highlight/ remove duplicates.
-
Option to return one file or two files.
-
Option to save the document.
-
Show usage example to users.
-
Design Tool
- Figma for design.
-
Collaboration tools
- Figjam for whiteboarding and collaboration.
- GitHub for collaboration and developer.
-
Languages
- JavaScript.
- Python.
-
Framework
- Django.
-
Create a folder: mkdir folder_name
-
Change directory to the folder: cd folder_name
-
Clone main branch to folder: git clone --branch main https://github.com/zuri-training/excel_comp_team_106.
-
Create virtual environment: python3 -m venv venv (or your preferred virtual environment)
-
Activate virtual environment: For Mac (source venv/bin/activate), Windows (.\venv\Scripts\activate)
-
Install packages: pip install -r requirements.txt
-
Make migrations: python manage.py migrate
-
Run the local server: python manage.py runserver