An open API service indexing awesome lists of open source software.

https://github.com/darren277/pascalapp

A simple Pascal web application that serves data from a Postgres database.
https://github.com/darren277/pascalapp

pascal postgres

Last synced: 2 months ago
JSON representation

A simple Pascal web application that serves data from a Postgres database.

Awesome Lists containing this project

README

        

# pascalapp

## About

A simple Pascal web application that serves data from a Postgres database.

## Usage

### Postgres Initialization

Download and install Postgres.

Create a user.

Modify `pg_hba.conf` (replace `13` with whatever version you have).

```shell
sudo nano /etc/postgresql/13/main/pg_hba.conf
```

```
# "local" is for Unix domain socket connections only
#local all all peer
local all all md5
```

```shell
sudo systemctl reload postgresql
```