Quickstart
How to get started with Landing Lightning
Step 1: Get access to the repository
Create a Lightning Rails account on the offical website. As the account is created with Github Oauth, you will receive an automatic invitation to Lightning Landing Repo.
After accepting the Github Invite, Follow these steps to quickly set up your new portfolio/landing page using the Lightning Landing boilerplate.
Step 1: Clone the Repository
First, clone the Lightning Landing repository to your local machine. Open your terminal and run:
gh repo clone LightningRails/lightning-landing mysupercoolpage
This creates a clone of the lightning landing repo, which is great! But we only want the source code, not the GitHub origin or all your code would be pushed to the source repo 🫣
Let's fix it by removing the Origin and creating a new one...
Step 2: Remove and change the remote
After cloning the repository, navigate to the project directory:
cd mysupercoolpage
First, let's remove the source code remote in your terminal:
git remote remove origin
Then we will create a new repository in our GitHub account and assign the current directory as source.
gh repo create --public --source=.
Commit and push your first commit
ga .
gc -m "First commit"
git push origin master
gh repo view -w
Start your server in your terminal:
serve
Et Voila! You officially have the Lightning Landing template on your own GitHub account. Now let's look at how fast we can build a static landing page.
Optional: Create a Get Waitlist account
If you wish to gather emails to validate your next SaaS business, you can create a get waitlist account and add the button in your Landing Page CTA's
Last updated
Was this helpful?