Skip to content

Commit

Permalink
Updated the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
kacperpONS committed Jun 13, 2024
1 parent 549cafb commit 34d0d49
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ below command to the .zshrc (if using a z shell) or .inputrc or .profile or .bas
eval "$(pyenv init -)"
```

- **`pyenv --version`** # check whether pyenv is installed
- **`brew install pyenv`** # install pyenv with brew
- **`pyenv install 3.X.Y`** # the app needs python 3.9
- **`pyenv local 3.x.y`** # whenever you come to this directory this python will be used
- **`pyenv --version`** # check whether pyenv is installed
- **`brew install pyenv`** # install pyenv with brew
- **`pyenv install 3.X.Y`** # the app needs python 3.9
- **`pyenv local 3.x.y`** # whenever you come to this directory this python will be used

pyenv local will create a **.python-version** file so that whenever you return to the directory your python env is set.
Note that this has been put into `.gitignore`
Expand All @@ -60,8 +60,8 @@ Note that this has been put into `.gitignore`
As this project maintains a pip file you can ascertain validity by running **`pipenv check`** - whenever Python is
upgraded the Pipfile change is all that is required. To ensure you are in sync use

- **`pipenv check`** # check whether the environments match
- **`pipenv --rm`** # if the check fails remove the current environment
- **`pipenv check`** # check whether the environments match
- **`pipenv --rm`** # if the check fails remove the current environment

## Setup Based on python 3.X.Y

Expand Down Expand Up @@ -123,14 +123,14 @@ Development using this repo can be done by doing the following:
### pgAdmin 4

1. Start all the services `make up`
2. Navigate to `localhost:80` in your browser
2. Navigate to `localhost:81` in your browser
3. Login with `[email protected]` / `secret`
4. Object -> Create -> Server...
5. Give it a suitable name then in the connection tab:
1. `postgres` for the host name
1. `5432` for the port
1. `postgres` for the maintenance database
1. `postgres` for the username
1. `postgres` for the host name
1. `5432` for the port
1. `postgres` for the maintenance database
1. `appuser` for the username
6. Click save to close the dialog and connect to the postgres docker container

## Troubleshooting
Expand Down

0 comments on commit 34d0d49

Please sign in to comment.