From 3bb60d79c2e33386f690f2d2fbce1564eb325740 Mon Sep 17 00:00:00 2001 From: pasta04 Date: Mon, 3 Jan 2022 02:25:26 +0900 Subject: [PATCH 1/4] =?UTF-8?q?=E9=96=8B=E7=99=BA=E7=92=B0=E5=A2=83?= =?UTF-8?q?=E3=81=A7=E5=8B=95=E4=BD=9C=E3=81=95=E3=81=9B=E3=82=8B=E3=81=AE?= =?UTF-8?q?=E3=81=AB=E5=BF=85=E8=A6=81=E3=81=AA=E6=89=8B=E9=A0=86=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E8=A8=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 24238003d..4ba9254a2 100644 --- a/README.md +++ b/README.md @@ -125,6 +125,12 @@ Add the following apps to the `INSTALLED_APPS` section of `tracker_development/s 'mptt', ``` +Add the Parameter in `setting.py`: + +``` +DOMAIN = "server hostname" +``` + Add the following chunk somewhere in `settings.py`: ```python @@ -173,6 +179,15 @@ urlpatterns = [ In the main project folder: +- `python manage.py migrate` +- `python manage.py compilemessages` + + - It needs `gettext`. For example, `apt-get install -y gettext libgettextpo-dev` + +- `python manage.py createsuperuser` + + - create superuser by following the dialog + - `python manage.py runserver` In a separate shell, in the `donation-tracker` folder: From 5c57be0990d101ba9967509eef55089e69724266 Mon Sep 17 00:00:00 2001 From: pasta04 Date: Mon, 3 Jan 2022 16:23:19 +0900 Subject: [PATCH 2/4] =?UTF-8?q?git=20clone=E3=81=AE=E3=83=AA=E3=83=9D?= =?UTF-8?q?=E3=82=B8=E3=83=88=E3=83=AA=E3=82=92RiJ=E3=81=AB=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ba9254a2..f901f1f0b 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ Start up a new Django Project like the [Django Tutorial](https://docs.djangoproj Clone the Git repo and install it in edit mode: -- `git clone git@github.com:GamesDoneQuick/donation-tracker` +- `git clone git@github.com:RTAinJapan/donation-tracker` - `pip install -e donation-tracker` Install remaining development dependencies: From d492c7ac51fb2535a501532cb3ecff16065f0fe3 Mon Sep 17 00:00:00 2001 From: pasta04 Date: Mon, 3 Jan 2022 17:40:15 +0900 Subject: [PATCH 3/4] =?UTF-8?q?=E3=83=95=E3=83=83=E3=82=BF=E3=83=BC?= =?UTF-8?q?=E3=82=92=E3=82=B3=E3=83=B3=E3=83=91=E3=82=AF=E3=83=88=E3=81=AB?= =?UTF-8?q?=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tracker/templates/base.html | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/tracker/templates/base.html b/tracker/templates/base.html index b70ed66cd..cc5252eda 100644 --- a/tracker/templates/base.html +++ b/tracker/templates/base.html @@ -97,13 +97,8 @@ {% block login %}{% endblock %} {% block credits %} {% if djangoversion and pythonversion %} -
- {% blocktrans with djangoversion=djangoversion pythonversion=pythonversion %} - Running on Django with Python - {% endblocktrans %} -
{% trans "Python code by UraniumAnchor, SMK, and jdeng" %} -
{% trans "CSS by Cool Matty" %} -
{% trans "Translated By yagamuu and cma"%} +
+ {% trans "Python code by UraniumAnchor, SMK, and jdeng." %} {% trans "CSS by Cool Matty." %} {% trans "Translation by yagamuu and cma."%}
{% endif %} {% endblock %} From 09cc4032d99f67209a2d032a885c0e58b9a8b39e Mon Sep 17 00:00:00 2001 From: Cma Date: Thu, 13 Jan 2022 20:12:32 +0900 Subject: [PATCH 4/4] update a bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f901f1f0b..eee9248f0 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ Add the following apps to the `INSTALLED_APPS` section of `tracker_development/s 'mptt', ``` -Add the Parameter in `setting.py`: +Add the following parameter in `setting.py`: ``` DOMAIN = "server hostname"