GitXplorerGitXplorer
O

cyberpunkCTF

public
1 stars
0 forks
12 issues

Commits

List of commits on branch master.
Verified
d8a398a3605708e08540ef164f3b32baec856af6

Update README.md

OOperationXen committed 5 years ago
Unverified
7d6de3cb01ffd5f0a5584abebd8e3ea91011498b

Merge branch 'development'

OOperationXen committed 5 years ago
Unverified
ebd0aefcb96161b858d8a80517d1ed40e9dafa4a

Attempting to fix bizarre merge issue

OOperationXen committed 5 years ago
Unverified
b5722c3392cd75792673ba83c4689686bb5c8491

Code tidy and rearrange

OOperationXen committed 5 years ago
Unverified
e683904724d086a7a85364cfd6bba8308b422ee4

Merge remote-tracking branch 'origin/development' into ui

OOperationXen committed 5 years ago
Verified
550cc000fe5f775b0faa62f711a02b003d7e9cae

Added dialogues for detail view (#22)

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