Skip to content

Commit 05c6536

Browse files
chore: update README
1 parent 8a6b94e commit 05c6536

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ A CTF platform backend written in [FastAPI](https://github.com/fastapi/fastapi)
2626

2727
Before you begin, ensure you have met the following requirements:
2828

29-
- Python 3.7+
29+
- Python 3.7+ (< Python 3.13)
3030
- Docker (optional, for container functionality)
3131

3232
## Installation
@@ -41,7 +41,7 @@ Before you begin, ensure you have met the following requirements:
4141
2. Set up a virtual environment:
4242

4343
```bash
44-
python3 -m venv .venv
44+
python3.12 -m venv .venv
4545
source .venv/bin/activate
4646
```
4747

@@ -62,11 +62,14 @@ Before you begin, ensure you have met the following requirements:
6262
1. Start:
6363

6464
```bash
65-
cd src
6665
uvicorn pwncore:app --reload
66+
67+
# OR
68+
69+
poetry run dev
6770
```
6871

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)
7073

7174
3. Docker configuration:
7275
- Enable and start the Docker service on your system, or

0 commit comments

Comments
 (0)