Skip to content

This is a Django web application that prototypes an online multiplayer black jack game.

Notifications You must be signed in to change notification settings

vikas91/black-jack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

System Requirements

  1. OS - Ubuntu Server 18.04 LTS (HVM)
  2. SSD - 8GB
  3. AWS Insance Type - t2.micro

Pre Requisite Installation Steps

  1. Repository Setup
    1. $ mkdir -p ~/workspace && cd ~/workspace
    2. $ git clone https://github.com/vikas91/black-jack.git
  2. Python3, Pip, virtualenv Setup
    1. Ubuntu 18 comes with python3 installed. If not follow the link here
    2. $ sudo apt install pip3
    3. $ sudo pip3 install virtuale

Project Setup instructions

  1. $ cd ~/workspace/black-jack
  2. $ virtualenv packages
  3. $ source packages/bin/activate
  4. $ pip install -r requirements.txt
  5. $ cd ~/workspace/black-jack/webapp
  6. $ python manage.py makemigrations webapp
  7. $ python manage.py migrate

Django Server Running Instructions

  1. $ screen
  2. $ python manage.py runserver 0.0.0.0:8000 10.$ ctrl + a + d (detach from screen)

Superuser Creation

  1. $ cd ~/workspace/black-jack/webapp
  2. $ python manage.py createsuperuser
  3. Create tables by adding minimum bet value for the table by visiting admin url http://0.0.0.0:8000

About

This is a Django web application that prototypes an online multiplayer black jack game.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published