added some note

This commit is contained in:
Nik Afiq 2025-03-13 12:40:25 +09:00
parent 942ec2a062
commit 5ec72108ad
2 changed files with 8 additions and 0 deletions

3
memo/ufw-memo.md Normal file
View File

@ -0,0 +1,3 @@
```
sudo ufw allow from 192.168.70.0/24 to any port 33060
```

View File

@ -2,4 +2,9 @@
python -m venv <env-name>
source <env-name>/bin/activate
deactivate
```
```
pip freeze > requirements.txt
pip install -r requirements.txt
```