Skip to content

sk1122/fetcch

 
 

Repository files navigation

Fetcch

Requirements

  • Node.js 14+ and npm

Getting started

Run the following command on your local environment:

git clone --depth=1 https://github.com/glitch-afk/fetcch.git 
cd fetcch
npm install or yarn

Then, you can run locally in development mode with live reload:

npm run dev or yarn dev

Open http://localhost:3000 with your favorite browser to see your project.

.
├── README.md                       # README file
├── __mocks__                       # Mocks for testing
├── .github                         # GitHub folder
├── .husky                          # Husky configuration
├── .vscode                         # VSCode configuration
├── public                          # Public assets folder
├── src
│   ├── layouts                     # Layouts components
│   ├── pages                       # Next JS Pages
│   ├── pages.test                  # Next JS Pages tests (this avoid test to treated as a Next.js pages)
│   ├── styles                      # Styles folder
│   ├── templates                   # Default template
│   └── utils                       # Utility functions
├── tailwind.config.js              # Tailwind CSS configuration
└── tsconfig.json                   # TypeScript configuration

Deploy to production

You can see the results locally in production mode with:

$ npm run build
$ npm run start

The generated HTML and CSS files are minified (built-in feature from Next js). It will also removed unused CSS from Tailwind CSS.

You can create an optimized production build with:

npm run build-prod

License

Licensed under the MIT License, Copyright © 2022

See LICENSE for more information.


Made with ♥ by v3n0m

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 97.1%
  • JavaScript 1.5%
  • CSS 1.4%