Skip to content

pavsidhu/aida

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Aida

Your digital assistant for meeting new people 👬🏼

My 3rd year final project for BSc Artificial Intelligence and Computer Science at the University of Birmingham.

How To Use

Server

  1. Install dependencies
cd server
python3 -m venv venv
source venv/bin/activate
python3 -m pip install -r requirements.txt
  1. Start a job queue
rq worker
  1. Start a job scheduler
rqscheduler
  1. Start the server
python -m flask run
rq worker # Starts a job queue

App

  1. Install dependencies
cd app
yarn install
  1. Run on an Android device or emulator
yarn run android
  1. Run on an iOS device or emulator
yarn run ios

Admin Website

  1. Install dependencies
cd website
yarn install
  1. Start the website
yarn start