Skip to content

Commit 31ab196

Browse files
committedAug 28, 2023
init
1 parent ba5e825 commit 31ab196

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+2624
-1
lines changed
 

‎.gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
accounts/__pycache__
2+
accounts/migrations
3+
challenges/__pycache__
4+
challenges/migrations
5+
challenges/uploads
6+
home/__pycache__
7+
home/migrations
8+
minictf/__pycache__
9+
scoreboard/__pycache__
10+
scoreboard/migrations
11+
teams/__pycache__
12+
teams/migrations
13+
forums/__pycache__
14+
forums/migrations
15+
.vscode
16+
.env
17+
.python-version

‎Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
docker_build:
2+
docker build -t minictf .
3+
4+
docker_run:
5+
docker run --rm -it -p 8000:8000 minictf:latest

0 commit comments

Comments
 (0)
Please sign in to comment.