-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
113 lines (82 loc) · 4.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="description" content="Checkmate : Web chess application based on GNUChess">
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>Checkmate</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/CheckmateChess">View on GitHub</a>
<h1 id="project_title">Checkmate</h1>
<h2 id="project_tagline">Web chess application based on GNUChess</h2>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<h1>
<a id="checkmate---web-chess-application-based-on-gnuchess" class="anchor" href="#checkmate---web-chess-application-based-on-gnuchess" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Checkmate - Web chess application based on GNUChess</h1>
<h2>
<a id="description" class="anchor" href="#description" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Description</h2>
<p>It is a web application designed and developed during the 2014-2015 Fall Semester as project of <a href="http://www.ceng.metu.edu.tr/course/ceng498/">Software Development with Scripting Languages</a> course at Middle East Technical University. Pair Programming has been used as software development technique.
<strong>Important:</strong> Our project works best with GNU Chess 6.1.2</p>
<h2>
<a id="prerequisites" class="anchor" href="#prerequisites" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Prerequisites</h2>
<p>Following packages must be installed:</p>
<ul>
<li>gnuchess : <code>sudo apt-get install gnuchess</code>
</li>
<li>django : <code>sudo apt-get install python-django</code>
</li>
</ul>
<h2>
<a id="how-to-run" class="anchor" href="#how-to-run" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>How to run</h2>
<p>Let’s proceed step by step:</p>
<ul>
<li>clone the repository using <code>git clone [email protected]:esrefozturk/checkmate.git</code>
</li>
<li>change directory using <code>cd checkmate</code>
</li>
<li>start CheckmateServer using <code>python CheckmateServer.py 0.0.0.0 20000</code>
</li>
<li>on another terminal change directory using <code>cd checkmate</code>
</li>
<li>start django web server using <code>python manage.py runserver</code>
</li>
</ul>
<h2>
<a id="where-to-get-help" class="anchor" href="#where-to-get-help" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Where to get help</h2>
<p>If you want to try our project and something doesn’t go as expected, drop us a line at <a href="mailto:[email protected]">[email protected]</a> or <a href="mailto:[email protected]">[email protected]</a></p>
<h2>
<a id="contribution" class="anchor" href="#contribution" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Contribution</h2>
<p>We both love open source software and would like to see pull requests.</p>
<h2>
<a id="contributor-list" class="anchor" href="#contributor-list" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Contributor list</h2>
<ul>
<li><a href="https://github.com/default-usr">Ozge</a></li>
<li><a href="https://github.com/esrefozturk">Esref</a></li>
</ul>
<h2>
<a id="credits" class="anchor" href="#credits" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Credits</h2>
<p>This project is as a fork of <a href="http://www.gnu.org/software/chess/">GNUChess</a>.</p>
<h2>
<a id="screenshots" class="anchor" href="#screenshots" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Screenshots</h2>
<p><img src="CheckmateChess.github.io/img/1.png" alt="1">
<img src="CheckmateChess.github.io/img/2.png" alt="2">
<img src="CheckmateChess.github.io/img/3.png" alt="3"></p>
<p>Built with hugs and bugs in Ankara.</p>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
</body>
</html>