This is FPL Manager, where you compete with the other managers on the server based on how well you can predict the performances of your favorite players in th Barclays Premier League.
The contributors to this project are:
- Md Shafiul Haque (1905102)
- Tahsin Wahid (1905115)
Make sure you have node and oracle installed in your device.
Node.js
: Install Node.js from here
Oracle
: Install Oracle from here and register for an account of your own
- Clone the repo or download zip.
-
Go to the repository directory and open terminal.
-
Install packages
npm install
This will install all the required packages for this project.
-
Open SQL Plus
-
Enter credentials
username: sys as sysdba password: password
-
Create a new user named c##fpl_manager
create user c##fpl_manager identified by fpl; grant all privileges to c##fpl_manager;
-
Connect to oracle as c##fpl_manager in SQL Plus
-
Copy and paste from sql_dump/schemas.sql and run.
@schemas;
-
Check for errors.
-
Now that everything is set, open terminal in the base directory of the repo.
-
Run the server
npm run dev