PayEd is a digital payment solution for students as well as an ERP for the management of digital payment collections for students or members of academic institutions and the entities respectively.
- Python 3.9
- Django 3.2
Clone this repository and open it in an editor.
git clone https://github.com/Festus-Kwafo/PayEd.git
cd PayEd/src
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python3 manage.py makemigrations
python3 manage.py migrate
Install npm packages for preprocessing static files.
npm install
Run this command to spin up the django development server.
py manage.py runserver
Then run the command below to run the static files preprocessor.
npm start