-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Update code formatting in configuration files
- Loading branch information
Showing
13 changed files
with
5,390 additions
and
5,282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"extends": "next/core-web-vitals" | ||
} | ||
{ | ||
"extends": "next/core-web-vitals" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
.yarn/install-state.gz | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts | ||
|
||
.env | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
.yarn/install-state.gz | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts | ||
|
||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,61 @@ | ||
# kleren.michalk.nl | ||
Een web applicatie bedoeld om informatie te geven over het weer van vandaag. Het applicatie geeft aan of een korte broek of een lange broek aan getrokken moet worden. | ||
## Authors | ||
|
||
- [@scraayp](https://www.github.com/scraayp) | ||
|
||
|
||
## License | ||
|
||
[MIT](https://choosealicense.com/licenses/mit/) | ||
|
||
|
||
## Support | ||
|
||
For support, email [email protected] or contact me at discord: scraayp. | ||
|
||
## Run Locally | ||
|
||
Clone the project | ||
|
||
```bash | ||
git clone https://github.com/Scraayp/kleren.michalk.nl.git | ||
``` | ||
|
||
Go to the project directory | ||
|
||
```bash | ||
cd kleren.michalk.nl | ||
``` | ||
|
||
Install dependencies | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
Start the server | ||
|
||
```bash | ||
npm run dev | ||
``` | ||
|
||
|
||
## Tech Stack | ||
|
||
**Client:** React (NextJS), TailwindCss | ||
|
||
**Server:** Node | ||
|
||
**Hosting:** Vercel | ||
|
||
|
||
## Environment Variables | ||
|
||
To run this project, you will need to add the following environment variables to your .env file | ||
|
||
`API_KEY`: https://www.weatherapi.com/ | ||
## Screenshots | ||
|
||
![Screenshot van de website](https://i.imgur.com/Q7Akt9Z.png) | ||
|
||
# kleren.michalk.nl | ||
Een web applicatie bedoeld om informatie te geven over het weer van vandaag. Het applicatie geeft aan of een korte broek of een lange broek aan getrokken moet worden. | ||
## Authors | ||
|
||
- [@scraayp](https://www.github.com/scraayp) | ||
|
||
|
||
## License | ||
|
||
[MIT](https://choosealicense.com/licenses/mit/) | ||
|
||
|
||
## Support | ||
|
||
For support, email [email protected] or contact me at discord: scraayp. | ||
|
||
## Run Locally | ||
|
||
Clone the project | ||
|
||
```bash | ||
git clone https://github.com/Scraayp/kleren.michalk.nl.git | ||
``` | ||
|
||
Go to the project directory | ||
|
||
```bash | ||
cd kleren.michalk.nl | ||
``` | ||
|
||
Install dependencies | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
Start the server | ||
|
||
```bash | ||
npm run dev | ||
``` | ||
|
||
|
||
## Tech Stack | ||
|
||
**Client:** React (NextJS), TailwindCss | ||
|
||
**Server:** Node | ||
|
||
**Hosting:** Vercel | ||
|
||
|
||
## Environment Variables | ||
|
||
To run this project, you will need to add the following environment variables to your .env file | ||
|
||
`API_KEY`: https://www.weatherapi.com/ | ||
## Screenshots | ||
|
||
![Screenshot van de website](https://i.imgur.com/Q7Akt9Z.png) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = {}; | ||
|
||
export default nextConfig; | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = {}; | ||
|
||
export default nextConfig; |
Oops, something went wrong.