Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.34 KB

README.md

File metadata and controls

38 lines (31 loc) · 1.34 KB

Go

jerseyctf-website

NJIT ACM's website for registration and information on the JerseyCTF event. (jerseyctf.com)

NJIT ACM Logo

Technical Details

  • A dynamic site that uses HTML templates, from the go standard library
  • The back-end (web server) is written in golang-go
  • The front-end is written using Bootstrapv5

Usage

# To test JCTF site locally
# Required: go (golang) 
# Optional: make
$ git clone https://github.com/jerseyctf/jerseyctf-website.git
$ cd jerseyctf-website/src
$ go build main.go
# Optionally: use `make`
-----
Running:
# If MacOS / Linux:
$ ./main  
# If Windows:
$ ./main.exe
- Go to http://localhost:9990

Purpose