migration files init

This commit is contained in:
2025-12-03 22:18:43 +05:30
parent 8ac44cea29
commit 10d40651f4
2 changed files with 205 additions and 1 deletions

View File

@@ -22,6 +22,13 @@ python3 --version
pip3 --version
```
## 4. Pip global config :
```bash
sudo bash -c 'echo -e "[global]\nbreak-system-packages = true" > /etc/pip.conf'
```
-- this is optional, either create a venv for separate python based app in repo, or simply have global permissson by this.
## 4. Install PostgreSQL
```bash
sudo apt install -y postgresql postgresql-contrib
@@ -33,4 +40,4 @@ sudo systemctl enable postgresql
## 5. Install Git
```bash
sudo apt install -y git
```
```