From e9749ecc0fbf502420c0b028998c2c9e5314eb77 Mon Sep 17 00:00:00 2001 From: Sirin Puenggun Date: Sun, 10 Sep 2023 22:57:01 +0700 Subject: [PATCH] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 82b77eb..fad8e87 100644 --- a/README.md +++ b/README.md @@ -40,14 +40,17 @@ python manage.py runserver ***NOTE*** -By Default `DEBUG=False` and Django will not load CSS file for you so if you want to apply CSS run this. +By Default `DEBUG=False` and Django will not load Static files for you so if you want to apply CSS run this. ```bash python manage.py runserver --insecure ``` or set `DEBUG=True` +or do the [collectstatic](https://docs.djangoproject.com/en/4.2/ref/contrib/staticfiles/) Then connect to [http://127.0.0.1:8000/](http://127.0.0.1:8000/) or [localhost:8000/](localhost:8000/) +---- + **Recommend** You can create virtual environment by using this command before install requirements.txt @@ -78,5 +81,7 @@ All project documents are in the [Project Wiki](https://github.com/Sosokker/ku-p - [Vision Statement](https://github.com/Sosokker/ku-polls/wiki/Vision-Statement) - [Requirements](https://github.com/Sosokker/ku-polls/wiki/Requirements) +- [Iteration1](https://github.com/Sosokker/ku-polls/wiki/Iteration-1-Plan) +- [Iteration2](https://github.com/Sosokker/ku-polls/wiki/Iteration-2-Plan) [django-tutorial](https://docs.djangoproject.com/en/4.2/intro/tutorial01/)