Personal Website and blog
This is a personal website(portfolio) and Blog written in Django.
To use as your own just follow the steps below.
$ git clone https://github.com/TrippleA-Ashaba/ashabaheebwa.git
or you can fork if you prefer.
$ pip install -r requirements.txt
create a .env file inside the base directory. ie same level as manage.py
$ touch .env
add the following in the .env file
<!-- secrets and dev mode -->
SECRET_KEY='MY DJANGO PROJECT SECRET KEY'
DEBUG=True
<!-- email backend for password reset and email sending -->
EMAIL_HOST_PASSWORD = "MY API KEY"
EMAIL_HOST_USER = "USER NAME"
<!-- Database configurations -->
DB_USER='user'
DB_NAME='dbname'
DB_PASSWORD='password'
If you decide to use a different DB, ensure to make changes in the django_project/setting.py file
populate the database with tables
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py collectstatic
$ python manage.py createsuperuser
$ python manage.py runserver
your_domain/admin
your_domain
#portifolio page
your_domain/blog
#blog page
#ENJOY