Skip to content

Latest commit

 

History

History
executable file
·
36 lines (21 loc) · 1.41 KB

README.md

File metadata and controls

executable file
·
36 lines (21 loc) · 1.41 KB

CS1.3 Technical Article Repo: Abstraction What is it ?

Created by: Chris Barens

PURPOSE OF PROJECT:

The goal of this project is to provide a working code sample for my Medium article, Google Doc: Preferred format, as well as demonstrate and learn good coding habbits.

Disclaimer: I'm assuming you know what an IDE and Terminal are and you have the proper packages to run your specific language.

To start, this project's code will be in python3 but will have comments for what it would be in the other languages covered in my article.
Eventually I will separate them out into mini projects as part of a workspace for the overwarping concept of Abstraction. (node.js and java)

Dependencies & USER INSTRUCTIONS :

Dependencies are added to the requirements.txt file.

Usage of virtualenv is highly recommended. Please use the following steps to install this django project.

Following steps requires using a terminal.

Install virtualenv if it's not installed before

$ pip3 install virtualenv

Use the following to set up the project

virtualenv venv --distribute
source venv/bin/activate
pip install -r requirements.txt 

HOW TO START A FILE IN THIS PROJECT

$ python3 <filename.py>