An open API service indexing awesome lists of open source software.

https://github.com/seshasaisrivatsav/taportal

Web application created for College of Computer Science at Northeastern University. Admin and Faculty can create TA Positions. Students can apply to TA Positions by updating resume and profile. Lectures can recommend and review applications.
https://github.com/seshasaisrivatsav/taportal

angular1 angularjs css expressjs full-stack html mean-stack mongodb nodejs resume-upload teaching-assistants-portal uml

Last synced: about 1 month ago
JSON representation

Web application created for College of Computer Science at Northeastern University. Admin and Faculty can create TA Positions. Students can apply to TA Positions by updating resume and profile. Lectures can recommend and review applications.

Awesome Lists containing this project

README

        

## TA Portal

- TA Portal is a Web Application built as part of a project for College of Computer Science (CCIS) at Northeastern University during Managing Software Development (MSD) Course.
- Using this application, Admins (Professors, Senior Faculty) can create Teaching Assistant positions.
- They can also review the applications based on grades and weather a student has been TA before etc, set application status, application deadlines etc.
- The users i.e., students, have to register to this portal to apply for TA Positions.
- Students must upload resumes and fill basic profile information and can apply for TA Positions

### Live instance of app
https://ta-portal.herokuapp.com/
[Youtube video Demo](https://youtu.be/ZEoNRj-WUsA)

### Test accounts
student: sesha
faculty: faculty
admin: admin

### Prerequisites


  1. nodeJs

  2. MongoDB

  3. ExpressJS

### Running Locally
```shell script
~ npm ci
~ npm install
~ npm start # or node server.js
```

### Environment variables

To enable third party log in



  1. GOOGLE_CLIENT_ID

  2. GOOGLE_CLIENT_SECRET

  3. GOOGLE_CALLBACK_URL

### MongoDB commands
```shell script
show dbs; ## shows list of databases
use ;
show collections; ## shows list of table
db.taportal.user.find().pretty() ## prints a table

## Update user type to admin
db.taportal.user.update({username: 'admin'}, {$set: {usertype: 'admin'}}, false, true)

```

Useful Links

Copyright


Copyright 2016, Sesha Sai Srivatsav, All rights reserved.


Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.