This is my personal website
- Name
- Social Media
- Skills
- Projects
- Journey
- Articles
- Tags
- Categories
- Article created and updated date
- Pagination
- Postgres
note: If you use windows, type python instead of python3
first check your python version is 3.x
check if pip is already installed on your pc
python3 -m pip --versionif you haven't check this
then install Django
python3 -m pip install DjangoCheck this
After all that let's set up the project! Open the terminal with the path of the folder where you have the project.
python3 manage.py migratepython3 manage.py makemigrationspython manage.py migrate --run-syncdbpython3 manage.py runserverif you want to create a super user:
python3 manage.py createsuperuseradd username, email and passwrod.
after run
python3 manage.py runserverOpen your browser at this link localhost:8000/admin and add informations,tags, categories, articles, projects and skills.
Finally, go to the home page localhost:8000 and done!