GitXplorerGitXplorer
O

cyberpunkCTF

public
1 stars
0 forks
12 issues

Commits

List of commits on branch master.
Verified
a1c66ff9304d27a19cae3654b114c1956d6dec16

Add notifications (#47)

OOperationXen committed 5 years ago
Verified
12cd2d2af030fe8e67e48d19f11a10732ebf4e9f

Add notifications (#45)

OOperationXen committed 5 years ago
Verified
5edf119cbdb7f2da00a7fd08679508820950474a

Add react router (#42)

OOperationXen committed 5 years ago
Verified
e6ae9f028d5aa4c45f22afceb8c58507cc3294e8

Development (#40)

OOperationXen committed 5 years ago
Verified
89c770f4e14e8213f9db61b78d4989d326796ff4

Update README.md

OOperationXen committed 5 years ago
Verified
425065cf7d6472ffe15b7ea08d34903cc6f8d7ba

Development (#38)

OOperationXen committed 5 years ago

README

The README file for this repository.

cyberpunkCTF

A CTF framework built on python using django, graphql and react

Codacy Badge

Requirements

  • Python 3
  • Pip

Setup

Clone this repository, then;

# Install dependencies from requirements file
pip install -r requirements.txt

# Create and run database migrations
python manage.py makemigrations && python manage.py migrate

Starting a server using the built in debugging server

# Start server on default host and port (127.0.0.1:8000)
python manage.py runserver

# Start server on custom host and port (note that port numbers < 1024 require elevated priviliges
python manage.py runserver 10.10.10.10 80

User Creation

You will need to create an admin user, you can do this with the command;

python manage.py createsuperuser

Once the user has been created you can log in to the built in admin page at /admin to create and configure challenges