Skip to content

Instantly share code, notes, and snippets.

Minimal Unreal New Project Setup

Skip the Launcher and create a new project directly

What is the minimal number of required files and folders needed to create an Unreal Engine Project? Surprisingly little -- one, one-line file to be specific -- and you can launch without needing to use the Launcher or have unreal prompt for a Template project.

Maybe the interesting thing here is that this is an option for some kind of automation. It's literally just create a one-line file, "open" it, and (maybe) select your chosen Unreal version.

Given the number of dev and test files I create, this is a nice direct way to get up and going.

@ScottKirvan
ScottKirvan / install_nodejs.md
Last active March 26, 2023 19:58
Discord Node.js dev notes:

Discord Node.js dev notes:

Installation: WSL - Ubuntu 22.04:

sudo apt install npm
shutdown -r now  # THIS  DOESN'T REALLY WORK, BUT YOU NEED TO EXIT THE SHELL AN LOG BACK IN -- cal also do an EXPORT
npm init -y
npm install discord.js
npm -v && node -v

9.5.0