Get started
Hi there, welcome to Just Launch It 🚀
I'm so excited you're here!
Here's a quick overview of the boilerplate. Follow these guides to get your app up and running
ASAP.
Once you're finished getting started, proceed with this tutorial to launch your app in just a
few minutes. Let's build that startup, FAST!
Setup your local environment
1. In your terminal, run the following commands to clone, install dependencies and run the
app:
terminal
1git clone https://github.com/just-launch-it/repo.git [YOUR_APP_NAME]
2cd [YOUR_APP_NAME]
3npm install
4git remote remove origin
5npm run dev
Just Launch It requires Node 18.13 or greater. Type
node -v
in your terminal to check your version.2. Rename
.env.example
to
.env
.terminal
1mv .env.example .env
3. Open
http://localhost:5173
to see your app running!