diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..43e4c5f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +wrangler.toml \ No newline at end of file diff --git a/README.md b/README.md index a840e76..b62b679 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This repository will house any initialization scripts, constant data, design not ## Design Notes All activities will be stored in our own database for simplicity and so that data can be formatted in a usable setup. Activity names will not be stored in the DB and instead will live in a `[type].[lang].json` file in their game translated forms. -The current plan is to host this database on Cloudflare D1. +The current plan is to host this database on Cloudflare D1, which is based on SQLite. ## Translations Current translation file list: diff --git a/wrangler.example.toml b/wrangler.example.toml new file mode 100644 index 0000000..30f06db --- /dev/null +++ b/wrangler.example.toml @@ -0,0 +1,4 @@ +[[d1_databases]] +binding = "DB" +database_name = "dutylog" +database_id = "[id]" \ No newline at end of file