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.
- Host: GitHub
- URL: https://github.com/seshasaisrivatsav/taportal
- Owner: seshasaisrivatsav
- Created: 2016-10-22T17:18:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-01-18T15:08:56.000Z (over 3 years ago)
- Last Synced: 2025-01-23T00:43:08.054Z (3 months ago)
- Topics: angular1, angularjs, css, expressjs, full-stack, html, mean-stack, mongodb, nodejs, resume-upload, teaching-assistants-portal, uml
- Language: HTML
- Homepage: https://ta-portal.herokuapp.com/
- Size: 27.2 MB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
- nodeJs
- MongoDB
- ExpressJS
### Running Locally
```shell script
~ npm ci
~ npm install
~ npm start # or node server.js
```### Environment variables
To enable third party log in
- GOOGLE_CLIENT_ID
- GOOGLE_CLIENT_SECRET
- 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.