Skip to main content

Posts

Showing posts with the label git

Publishing your Django project to github

On this post I will work you through the process of  deploying you app! to the  external service we'll be using  GitHub which is a code hosting service. Deploying is the process of publishing your application on the Internet so people can finally go and see your app. :) Git is a very popular "version control system" used by a lot of programmers. This software can track changes to files over time so that you can recall specific versions later. A bit like the "track changes" feature in word processor programs (e.g., Microsoft Word or LibreOffice Writer), but much more powerful.   Installing Git: Debian  apt install git Git tracks changes to a particular set of files in what's called a code repository (or "repo" for short). Let's start one for our project. Open up your console and run these commands, to make sure your on the project-level directory. find out your current working directory pwd        #find o...