You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
525 B

# wordle.ピケ.コム
## hosting
1. install:
- PHP (I use 8.2.1)
- PostgreSQL (I use 15.6)
2. clone this repo, `git clone https://git.xn--rck9c.xn--tckwe/pk11/wordle.git`
2. copy `vars.php.example` to `vars.php`
3. edit `vars.php` as explained in the file
4. create the following tables in the configured database:
```sql
CREATE TABLE words (
id INT PRIMARY KEY,
solution VARCHAR(5) NOT NULL,
print_date VARCHAR(10) NOT NULL,
days_since_launch INT,
editor VARCHAR(64)
);
```