chore: initialise project (julia)

This commit is contained in:
Muhammad Nauman Raza 2024-03-26 12:51:08 +00:00
parent 68b967b1d3
commit 05e70256d0
Signed by: devraza
GPG key ID: 91EAD6081011574B
3 changed files with 11 additions and 0 deletions

2
.env Normal file
View file

@ -0,0 +1,2 @@
# Set version of program
VERSION=0.1.0

4
Justfile Normal file
View file

@ -0,0 +1,4 @@
set dotenv-load
julia:
julia julia/main.jl

5
julia/main.jl Normal file
View file

@ -0,0 +1,5 @@
version = ENV["VERSION"]
printstyled("\nsage.jl $version\n", color=:cyan, bold=true);
println("A collection of cybersecurity-related utilities for my personal use.");
printstyled("This is the part of the program responsible for data visualisation and manipulation.\n", bold=true);