Skip to content

A-star-vengers/xword

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

xword

Build Status

Coverage Status

xword is a social crossword web application that will challenge players to solve puzzles of different difficulties and show them how they fare against other players.

cs4156 course project

team a-star-vengers:

Main task board: https://trello.com/b/j1ojqHO0/xword-board https://trello.com/b/MSTJnIIa/xword-board-2

Build status: https://travis-ci.org/A-star-vengers/xword

Contained in this repo is the code for the xword app, written in Python (3.4) using the flask framework.

See the Travis CI link above for more information (especially around static analysis and tests), but we anticipate that something like this should comprise a canonical run:

The layout follows what seems to be the convention for flask:

  • run.py -- the entry point to the app
  • tests/ -- test cases
  • util -- contains utilities around demoing the app
  • app/views.py -- is the main entry point for the front end logic
  • app/util.py -- contains some utilities used across 'views.py'
  • app/statics -- houses static resources
  • app/templates -- contains the jinja2 templates for the pages in our app
  • app/app.cfg -- contains the configuration for the app
  • app/dbmodels/init.py -- initialises the databases
  • app/puzzle/crossword.py -- the engine for generating the crossword puzzle (a cleaned up version of http://bryanhelmig.com/python-crossword-puzzle-generator/)
  • requirements.txt -- pip requirements file

Also contained within are our class diagrams.