Skip to content

livebungalow/bungalow-devops-hiring-public

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Bungalow Dev-Ops Hiring

The intention of this repository is to give a baseline to talk about in the interview of a Dev-Ops candidate.

Getting Started

Web Application

  • Python; tested with Python 3.9, probably works with other versions too
  • Django

Initial Setup

  • Assumes 'nix environment
  • The following shell commands will:
    • Create a Python virtual environment and use it
    • Install the requirements
    • Run database migrations
    • Create an admin user
    • Start the server
cd randomnumber
python -m venv .venv
source .venv/bin/activate
python -m pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser  # Needed for Admin access
python manage.py runserver 0.0.0.0:8000

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published