-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create the basic outline of a web app without any challenges (#1) * Start a readme file * Fix headers because how do I header? * Add a simple application that runs * Add a session * Add a public folder * Basic template * Add a header / footer * Add a blank level 1 * Add some basic level templates * Add bootstrap.js * Add a navbar * Lots of cleanups to the web code * Add header/footer I forgot * Basic challenges written and styled (#2) * Implement level 1 * Add level 2 * Formatting fix * Add level 3 * Add level 4 * Add skeleton files for 5/6/7 * Started to develop Level 5 * Add A challenge/solution for level 5 * Extracted level 5's code into a module to make it re-useable for level 6 and 7 * Add level 6, start workign on level 7 * Finish level 7 walkthrough * Lots of refactoring and cleanup * Add a dockerfile + rackup configuration (#3) * Add solution files I missed earlier (#4) * Add persistent sessions * Remove old Rakefile * Update and fix the makefile * Updated the links to point to the new presentation * Add a Makefile for docker
- Loading branch information
Showing
8 changed files
with
32 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
all: | ||
docker build -t cryptorama . | ||
|
||
run: | ||
docker run --rm -p 3000:3000 -ti cryptorama | ||
|
||
clean: | ||
docker rm cryptorama |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,24 @@ | ||
Cryptorama! | ||
|
||
This is a fun series of crypto challenges that I designed to go along with | ||
[a crypto workshop](https://drive.google.com/drive/u/0/folders/1rF_Wn1t31lK-EXofOAT58nDc7ZUDSGSt) | ||
[a crypto workshop](https://drive.google.com/open?id=1nJB-PbDxTDDZFniFW1N3-N7stVavPe9bP7MMZgGbCvc) | ||
I created. | ||
|
||
# Running | ||
|
||
The easiest way to run this is to use docker. Then just run... | ||
The easiest way to run this is to use docker. With docker installed and running, | ||
run... | ||
|
||
|
||
``` | ||
make install | ||
make run | ||
make && make run | ||
``` | ||
|
||
...as any user in the local `docker` group. | ||
|
||
# Challenges | ||
|
||
See the [src/](src/) folder for the application source code. | ||
See the [src/](src/) folder for the application source code and | ||
[solution/](solution/] for solutions. | ||
|
||
TODO: Outline the challenges here | ||
|
||
# Solutions | ||
|
||
See the [solutions/](solutions/) folder for solutions and walkthroughs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters