Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 700 Bytes

README.MD

File metadata and controls

37 lines (28 loc) · 700 Bytes

Software Engineer, Portfolio

Portfolio of Almaz Kunpeissov, Software Engineer. Python, Django.

This is Django applications for blogging, portfolio and some e-commerce.

To use

  • copy the repo

    git clone https://github.com/akundev/akundotdev.git
    
  • change .env variables:

    cd akundotdev
    cp .env.example .env
    
  • install pipenv and dependencies, migrate db, collect static files:

    pip3 install pipenv
    pipenv install
    pipenv run python3 manage.py migrate
    pipenv run python3 manage.py collectstatic
    
  • start dev server:

    make run
    
  • start prod server:

    make prod