27 lines
766 B
Markdown
27 lines
766 B
Markdown
# Authentication Service for Online Forum
|
|
|
|
This is a simple authentication service for an online forum. Online deployment is done using Fly.io at ~~<https://authapp.fly.dev/>~~ (DELETED).
|
|
|
|
## Features
|
|
|
|
- [x] User registration
|
|
- [x] User login
|
|
- [x] Error messages
|
|
- [x] Unique username
|
|
- [x] Password policy
|
|
- [x] Password encryption
|
|
- [x] Graphical user interface
|
|
- [X] Client-server encrypted communication: Implemented for online deployment, but not for local deployment.
|
|
|
|
## Video
|
|
|
|
[Auth.webm](https://user-images.githubusercontent.com/68151686/233848511-114907ba-f69a-44d7-93a6-66daf44b99fd.webm)
|
|
|
|
## Local Development
|
|
|
|
Local deployment is done using Docker. To start the service, run the following command in the root directory:
|
|
|
|
```bash
|
|
docker-compose up
|
|
```
|