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.
- Host: GitHub
- URL: https://github.com/darren277/pascalapp
- Owner: darren277
- Created: 2024-12-23T14:51:24.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-02-28T12:34:28.000Z (3 months ago)
- Last Synced: 2025-02-28T18:59:16.944Z (3 months ago)
- Topics: pascal, postgres
- Language: Pascal
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```