Is this hard to read? View this on GitHub!
Employee Database Application for CS 2450-001 Fall 2020.
- Kevin Thorne
- Tanner Olsen
- Kim Soto
- Luke Barrett
- Caleb Probst
- Colton Robbins
- Joshua Ley
Licenses and attributions attached in the LICENSES.txt and under Help>About in the application
EmpDat was designed with Windows users in mind. However, EmpDat can be run on any operating system Python is supported on.
- Unzip the
Portable.win.zip
to a location of choice. - Run
EmpDat.exe
- Done!
Most of the steps require a terminal window.
- Acquire the source with dependencies from the deployment ZIP archive
src_w_deps.zip
- Ensure Python 3 (version 3.6 minimum) is installed.
- Activate the virtual environment by running:
.\venv\Scripts\activate.bat
- Install dependencies:
pip install -r requirements.txt
- Run
python EmpDat.py
Most of the steps require a terminal window.
- Acquire the source from the deployment ZIP archive
src.zip
- Ensure Python 3 (version 3.6 minimum) is installed.
- Install dependencies:
pip3 install -r requirements.txt
- Run
python3 EmpDat.py
- Login as the super-admin:
- Employee ID:
-1
- Password:
Ineed2changemypassword!
- Employee ID:
- On the top bar, click File > Change Password and change the super-admin's password to preference
- If desired, import previous database of employees
- On the top bar, click Import > Employees and locate the previous CSV database
- Note: the database can be converted back into a CSV using the Employee Directory Report
- Consult the User Manual for performing other operations
A virtual environment (a shadow copy of an already installed Python) is recommended Python
- In the folder of choice:
git clone https://github.com/UVU-CS2450-001-Fall2020-Team2/EmpDat.git
- Run
python3 -m venv venv/
- Activate the virtual environment
- Windows:
venv/Scripts/activate.bat
- Linux/Unix/Mac:
source venv/bin/activate
- Windows:
- Install dependencies:
pip3 install -r requirements.txt
- Run
python EmpDat.py
Any time anything needs to be ran or installed
within the application, activate the virtual environment using
Step 3 above. Deactivation can be done with the command deactivate
.