readme
This commit is contained in:
parent
e21a81eee3
commit
7c8eae27f5
1 changed files with 21 additions and 0 deletions
21
README.md
21
README.md
|
@ -0,0 +1,21 @@
|
||||||
|
# BiglyChat
|
||||||
|
BiglyChat is a forum, authentication server, and a timeline social media. It was designed as an alternative to Discord for dervland.net, but can be used for other sites as well.
|
||||||
|
|
||||||
|
## 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:
|
||||||
|
```
|
||||||
|
mkdir /docs/pfp
|
||||||
|
```
|
||||||
|
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.
|
||||||
|
After all of this is complete, you should have a working BiglyChat installation.
|
Loading…
Reference in a new issue