Skip to content

adlite/adlite-info

Repository files navigation

My classy personal website

Now it's under development 🚧

I decided to write it open-source, so visit this repo soon 😉

Intro image

What’s Inside?

Environment

  • Node v14.x.x+
  • Npm v6.x.x+

Installing dependencies

To initialize project you should install dependencies from package-lock.json file via:

npm ci

Launch development version

To start Next development server:

npm run app:dev

Then open http://localhost:3000.

Launch Storybook development version

To start Storybook development server:

npm run storybook:dev

Then open http://localhost:3001.

Launch both

To start Next.js and Storybook in parallel:

npm run dev

Linters

You can inspect all you code in parallel running:

npm run linters:inspect

If it's possible you can inspect and autofix issues by linters running:

npm run linters:fix