https://github.com/duartegalvao/sirs_authserver
https://github.com/duartegalvao/sirs_authserver
computer-security django django-application django-rest-framework network-security pyotp python python3 rest rest-api totp
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/duartegalvao/sirs_authserver
- Owner: duartegalvao
- License: mit
- Created: 2018-10-28T15:36:10.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-02T10:02:12.000Z (about 7 years ago)
- Last Synced: 2025-01-19T16:49:19.260Z (over 1 year ago)
- Topics: computer-security, django, django-application, django-rest-framework, network-security, pyotp, python, python3, rest, rest-api, totp
- Language: Python
- Size: 42 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SIRS Authentication Server
## Description
This is part of a project for the [Network and Computer Security (SIRS)](https://fenix.tecnico.ulisboa.pt/disciplinas/SIRS/2018-2019/1-semestre) course in Instituto Superior Técnico of the University of Lisbon.
The repo contains the SIRS project authentication server (+ web app) component.
## Instructions
### Set-up
After cloning the project, you should create a virtual-env in the root folder, as follows:
```bash
virtualenv -p python3 auth-env
```
### Running
Make sure you are inside the environment:
```bash
source auth-env/bin/activate
```
Your shell prompt should have "`(auth-env)`" in the beginning.
Then, make sure all of the project requirements are installed:
```bash
pip3 install -r requirements.txt
```
After that you can just run the test-server:
```bash
python3 auth/manage.py runserver
```
### Developing
Django documentation is available [here](https://docs.djangoproject.com/en/2.1/).
### Exiting
To leave the environment, run:
```bash
deactivate
```
## Team
| Student Number | Name | Github Profile |
| -------------- | ---------------- | ----------------------------------------------- |
| 83422 | Amândio Faustino | [Nandinski](https://github.com/Nandinski) |
| 83449 | Duarte Galvão | [duartegalvao](https://github.com/duartegalvao) |
| 83524 | Marta Cruz | [rbouru](https://github.com/rbouru) |