Skip to content

Latest commit

 

History

History
73 lines (51 loc) · 2.51 KB

README.md

File metadata and controls

73 lines (51 loc) · 2.51 KB

GH Actions Test badge GH Actions Deploy badge Netlify Status

This is a Next.js project bootstrapped with create-next-app.

Getting Started

Install hundreds of unnecessary dependencies using this neatly concise command:

npm install

Then, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

File structure

.
├── components # React components
│   ├── input_formula # The text input accepting statements
│   ├── karnaugh_map # Tables, SVG drawing, DNF highlighting
│   └── presentation # Slide component, arrow controls
├── pages # SSG
├── presentation # Powerpoint directory
│   └── slides # Actual slide components
├── project # Actual project algorithms w/ tests
│   └── dnf
│       └── rectangle_fixtures # test cases
└── public # favicons, images, etc.

Deploy as if on GitHub

GitHub has a prefix URL /karnaugh which has to be taken into account when changing the URL and linking static files. This is automatically assumed unless the ASSET_PREFIX environment variable is overwritten.

To see GitHub's output:

npm run export

To see Netlify's output:

ASSET_PREFIX="" KARNAUGH_PATH="" npm run export

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.