Eudget is a networking platform that aids its users by finding university programs that match their specific interests. Additionally, Eduget users will have personalized profiles that allow them to be matched with or get searched by potential job opportunities.
git clone https://github.com/jamesmili/Capstone.git
install python and virtual env
sudo apt-get update
sudo apt-get install python3-pip python3-dev
pip3 install virtualenv
activate virtual environment
cd wiseturn
source wiseturnenv/bin/activate
install python packages
pip install -r requirements.txt
sudo apt-get update
sudo apt-get install nodejs npm
npm install
source wiseturnenv/bin/activate
python manage.py runserver
pip install -r requirements.txt
makemigrations when you modify models.py migrate to apply changes to your database
python manage.py makemigrations
python manage.py migrate
python manage.py loaddata testdata2.json
python manage.py createsuperuser
python manage.py shell_plus
user = WTUser.objects.first() # instead of first() you can do WTUser.objects.get(email="...")
makeInstitutionAdmin(user, Institution.objects.first()) # instead of first() you can do Institution.objects.get(uid="...")
removeInstitutionAdmin(user)
npm start
npm run build
