2024-12-03 02:31:21 -05:00
|
|
|
# BiglyChat
|
2025-01-29 17:48:48 -05:00
|
|
|
BiglyChat is a forum and authentication server for indie projects. It replaces Discord for dervland.net, but is usable for other sites.
|
2024-12-03 02:31:21 -05:00
|
|
|
|
|
|
|
## Running
|
|
|
|
Clone this repository into your Apache or NGINX configuration:
|
|
|
|
```
|
|
|
|
git clone https://git.dervland.net/biglyderv/new-bigly-chat
|
|
|
|
cd new-bigly-chat
|
|
|
|
```
|
|
|
|
Create directories:
|
|
|
|
```
|
2024-12-05 00:22:29 -05:00
|
|
|
mkdir docs/pfp
|
2025-01-29 17:48:48 -05:00
|
|
|
mkdir docs/pic
|
2024-12-03 02:31:21 -05:00
|
|
|
```
|
|
|
|
Create a file named ``test_secret.php`` in the ``libs`` folder:
|
|
|
|
```
|
|
|
|
<?php
|
|
|
|
$db = new PDO('pgsql:host=YOUR_HOST;dbname=YOUR_DB', 'YOUR_USER', 'YOUR_PASS');
|
|
|
|
?>
|
|
|
|
```
|
|
|
|
Initialize the database from the ``scripts`` folder.
|