diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-09-14 23:04:53 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-09-14 23:04:53 +1000 |
| commit | 796c4e5660b1006575b8f2af9d99e2ce592c767a (patch) | |
| tree | 63ec6c7f373dedf521c260438d4b776955107bc3 | |
| parent | 6d4ede5714f7a3616e90eac76523e892ddf37926 (diff) | |
Update credits
| -rw-r--r-- | DEPLOY.md | 8 | ||||
| -rw-r--r-- | src/components/HelpModal.vue | 10 |
2 files changed, 11 insertions, 7 deletions
@@ -20,12 +20,12 @@ 1. Copy files to the server (using ssh, sftp, or otherwise) 1. Copy `dist/` into Apache's document root, into the directory where Tilo will be served. The created directory should match up with the `base` value above (eg: `/var/www/terryt.dev/tilo/`). - 1. Copy over `backend/tolData/data.db`. The result should be denoted by the `DB_FILE` value above. + 1. Copy over `backend/tilo.py`. The location should be accessible by Apache (eg: `/usr/local/www/wsgi-scripts/`). Remember to set ownership and permissions as needed. - 1. Copy over the images in `backend/tolData/img/`. There are a lot of them, so compressing them - before transfer is advisable (eg: `tar czf imgs.tar.gz backend/tolData/img/`). The location should + 1. Copy over `backend/tol_data/data.db`. The result should be denoted by the `DB_FILE` value above. + 1. Copy over the images in `backend/tol_data/img/`. There are a lot of them, so compressing them + before transfer is advisable (eg: `tar czf imgs.tar.gz backend/tol_data/img/`). The location should match up with the `SERVER_IMG_PATH` value above (eg: `/var/www/terryt.dev/img/tilo/`). - 1. Copy over `backend/tilo.py`. The location should be accessible by Apache (eg: `/usr/local/www/wsgi-scripts/`). 1. Edit the site's config file to serve tilo.py. The file path will likely be something like `/etc/apache2/sites-available/terryt.dev-le-ssl.conf`, and the edit should add lines like the following, likely within a `<VirtualHost>` section: diff --git a/src/components/HelpModal.vue b/src/components/HelpModal.vue index d2576d5..747c687 100644 --- a/src/components/HelpModal.vue +++ b/src/components/HelpModal.vue @@ -252,7 +252,9 @@ for 01/05/22, the <a href="https://databus.dbpedia.org/dbpedia/collections/latest-core" :style="aStyles">DBpedia knowledge base</a> - for 01/03/22, and the Wikidata dump for 23/08/22. + for 01/03/22, and the + <a href="https://dumps.wikimedia.org/wikidatawiki/entities/" :style="aStyles"> + Wikidata dump</a> for 23/08/22. Wikipedia page content is available under <a href="https://creativecommons.org/licenses/by-sa/3.0/" :style="aStyles" >CC BY-SA 3.0</a>. @@ -263,9 +265,11 @@ <h1 class="text-lg font-bold">Other Credits</h1> <ul class="list-disc pl-4"> <li> - The UI was largely coded in + The UI was mostly coded in <a href="https://www.typescriptlang.org/" :style="aStyles">Typescript</a>, - and built using the <a href="https://vuejs.org/" :style="aStyles">Vue</a> framework + and built wth <a href="https://vuejs.org/" :style="aStyles">Vue</a>, + <a href="https://vitejs.dev/" :style="aStyles">Vite</a> & + <a href="https://pinia.vuejs.org/" :style="aStyles">Pinia</a> </li> <li> Tree data was processed using |
