File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ A CTF platform backend written in [FastAPI](https://github.com/fastapi/fastapi)
26
26
27
27
Before you begin, ensure you have met the following requirements:
28
28
29
- - Python 3.7+
29
+ - Python 3.7+ (< Python 3.13)
30
30
- Docker (optional, for container functionality)
31
31
32
32
## Installation
@@ -41,7 +41,7 @@ Before you begin, ensure you have met the following requirements:
41
41
2 . Set up a virtual environment:
42
42
43
43
``` bash
44
- python3 -m venv .venv
44
+ python3.12 -m venv .venv
45
45
source .venv/bin/activate
46
46
```
47
47
@@ -62,11 +62,14 @@ Before you begin, ensure you have met the following requirements:
62
62
1 . Start:
63
63
64
64
``` bash
65
- cd src
66
65
uvicorn pwncore:app --reload
66
+
67
+ # OR
68
+
69
+ poetry run dev
67
70
```
68
71
69
- 2 . Access the auto-generated documentation at [ http://localhost:8000 /docs ] ( http://localhost:8000 /docs )
72
+ 2 . Access the auto-generated documentation at [ http://localhost:8080 /docs ] ( http://localhost:8080 /docs )
70
73
71
74
3 . Docker configuration:
72
75
- Enable and start the Docker service on your system, or
You can’t perform that action at this time.
0 commit comments