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.
 
 
Pk11 9e2bfd4319
Initial commit
2 years ago
assets/images Initial commit 2 years ago
.gitignore Initial commit 2 years ago
LICENSE Initial commit 2 years ago
README.md Initial commit 2 years ago
favicon.ico Initial commit 2 years ago
index.html Initial commit 2 years ago
share.php Initial commit 2 years ago
vars.php.example Initial commit 2 years ago
words.php Initial commit 2 years ago

README.md

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
  3. copy vars.php.example to vars.php
  4. edit vars.php as explained in the file
  5. create the following tables in the configured database:
    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)
    );