Skip to content

lola-tech/lola-lab

Repository files navigation

alt Lola-Logo

A strongly opinionated TypeScript fronted boilerplate with Next.js and Typescript based on this repo: 🔥

🚀 Getting started

The best way to start with this template is using create-next-app.

yarn create next-app AwesomeLolaUi -e https://github.com/lolaent/lola-ui-starter

If you prefer you can clone this repository and run the following commands inside the project folder:

  1. yarn;
  2. yarn dev;

To view the project open http://localhost:3000.

🚀 Features

📄 Env variables

In order to use the environment variables, first you must store them in a .env.local file. If you want to expose the values inside the env expose them with the NEXT_PUBLIC prefix eg: NEXT_PUBLIC_GOOGLE_API_KEY = '12345' You can also use .env.development (development environment), and .env.production (production environment). Read more about NextJS environment variables