Skip to content

Commit

Permalink
added course files
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Wiesner committed Feb 23, 2018
1 parent 956a542 commit fc2529f
Show file tree
Hide file tree
Showing 27 changed files with 1,147 additions and 63,304 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["env"]
}
7 changes: 7 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
tmp/**
build/**
node_modules/**
contracts/**
migrations/1_initial_migration.js
migrations/2_deploy_contracts.js
test/metacoin.js
15 changes: 15 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"parser": "babel-eslint",
"extends": [
"standard"
],
"plugins": [
"babel"
],
"rules": {
"key-spacing" : 0,
"jsx-quotes" : [2, "prefer-single"],
"max-len" : [2, 120, 2],
"object-curly-spacing" : [2, "always"]
}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
build
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Introduction
This is the official repository for the Course "Ethereum Game Development: Build A Game On The Blockchain". In this course you learn how to build a simple, but fun game that runs on the blockchain from scratch: Tic Tac Toe.

We will cover everything from A to Z:

1. Solidity Basics, from the General File-Layout, Types, Events, Structs and Arrays and many more topics.
2. Development tools, such as Truffle, Web3/Truffle-Contract
3. Everything there is to know about different blockchains and nodes and how they operate
4. All you need to know about safely storing and sending/transferring Ether from or to Smart Contracts
5. And finally, how to test and publish this game live

4.5 hours of the course are pure hands-on and practical learning, while approx. 30 minutes are theory and general "good-to-knows". The Course is extremely hands-on and it's recommended to follow it's step-by-step structure.

# How To Run This Game
To run this game you and your opponent need access to the same blockchain. Either install MetaMask and choose the right network, or start your own blockchain node with go-ethereum or parity and connect to it.

Then go to https://tomw1808.github.io/blocktactoe/

# How To Install from the Repository

1. Install [Git](https://git-scm.com/downloads)
2. and [NodeJS](https://nodejs.org/en/download/) (including NPM) on Your Computer
3. Open a Terminal/Command Line and then `git clone https://github.com/tomw1808/blocktactoe.git"
4. `cd blocktactoe`
5. `npm install`
6. `npm install -g truffle`
7. `truffle develop`
8. Open a _second_ Terminal/Command Line in the same folder and type in
9. `npm run dev`
10. Then open your browser

# Questions/Suggestions?

Feel free to reach out any time! Best is the Course Q&A Forum where dedicated staff is helping out.
Loading

0 comments on commit fc2529f

Please sign in to comment.