23 lines
581 B
Markdown
23 lines
581 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/>.
|
|
|
|
## 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.
|
|
|
|
## Local Development
|
|
|
|
Local deployment is done using Docker. To start the service, run:
|
|
|
|
```bash
|
|
docker-compose up
|
|
```
|