You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://hub.docker.com/r/aditeyabaral/pesu-auth/tags)
[](https://hub.docker.com/r/pesudev/pesu-auth/tags)
A simple and lightweight API to authenticate PESU credentials using PESU Academy.
13
13
@@ -30,13 +30,15 @@ returns the user's profile information. No personal data is stored.
30
30
> All timestamps are in UTC.
31
31
32
32
> [!WARNING]
33
-
> The live version is hosted on a free tier server. As a result, you might experience higher latency compared to a local
34
-
> deployment.
33
+
> The live version is hosted on a free tier server located in the United States. As a result, you *might* experience higher latencies and slower response times, compared to running the API locally or on a server closer to your location.
35
34
36
35
## How to run PESUAuth locally
37
36
38
37
Running the PESUAuth API locally is simple. Clone the repository and follow the steps below to get started.
39
38
39
+
> [!TIP]
40
+
> We recommend running the API locally using Docker for ease of use, the best performance, and lowest latency.
41
+
40
42
### Running with Docker
41
43
42
44
This is the easiest and recommended way to run the API locally. Ensure you have Docker installed on your system. Run the
@@ -51,17 +53,17 @@ following commands to start the API.
51
53
```
52
54
53
55
2. You can also pull the pre-built Docker image
54
-
from [Docker Hub](https://hub.docker.com/repository/docker/aditeyabaral/pesu-auth/general) by running the
56
+
from [Docker Hub](https://hub.docker.com/repository/docker/pesudev/pesu-auth/general) by running the
55
57
following command:
56
58
```bash
57
-
docker pull aditeyabaral/pesu-auth:latest
59
+
docker pull pesudev/pesu-auth:latest
58
60
```
59
61
60
62
2. Run the Docker container
61
63
```bash
62
64
docker run --name pesu-auth -d -p 5000:5000 pesu-auth
63
65
# If you pulled the pre-built image, use the following command instead:
64
-
docker run --name pesu-auth -d -p 5000:5000 aditeyabaral/pesu-auth:latest
66
+
docker run --name pesu-auth -d -p 5000:5000 pesudev/pesu-auth:latest
0 commit comments