https://github.com/l3squad-com/java-master
A collection of quizzes to help you prepare for interviews and strengthen your skills in Java Developer Role and development.
https://github.com/l3squad-com/java-master
java quiz-app spring-boot test-mate
Last synced: 9 months ago
JSON representation
A collection of quizzes to help you prepare for interviews and strengthen your skills in Java Developer Role and development.
- Host: GitHub
- URL: https://github.com/l3squad-com/java-master
- Owner: l3squad-com
- License: mit
- Created: 2025-01-11T08:46:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-18T13:41:46.000Z (over 1 year ago)
- Last Synced: 2025-08-18T21:35:36.255Z (11 months ago)
- Topics: java, quiz-app, spring-boot, test-mate
- Language: JavaScript
- Homepage: https://l3squad-com.github.io/java-master/
- Size: 385 KB
- Stars: 8
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# java-master
A collection of quizzes to help you prepare for interviews and strengthen your skills in Java Developer Role and development.
### Create NextJS Boiler Plate App
```
npx create-next-app@latest . --use-npm
```
> Result
```
✔ Would you like to use TypeScript? … No / Yes
✔ Would you like to use ESLint? … No / Yes
✔ Would you like to use Tailwind CSS? … No / Yes
✔ Would you like your code inside a `src/` directory? … No / Yes
✔ Would you like to use App Router? (recommended) … No / Yes
✔ Would you like to use Turbopack for `next dev`? … No / Yes
✔ Would you like to customize the import alias (`@/*` by default)? … No / Yes
Creating a new Next.js app in /Users/alamelu/opensource/java-master.
Using npm.
Initializing project with template: app-tw
Installing dependencies:
- react
- react-dom
- next
Installing devDependencies:
- postcss
- tailwindcss
- eslint
- eslint-config-next
- @eslint/eslintrc
added 369 packages, and audited 370 packages in 38s
142 packages are looking for funding
run `npm fund` for details
found 0 vulnerabilities
Success! Created java-master at /Users/alamelu/opensource/java-master
```
## Open next.config.mjs
```
/** @type {import('next').NextConfig} */
const isDev = process.env.NODE_ENV === 'development';
const nextConfig = {
output: isDev ? 'standalone' : 'export',
basePath: isDev ? '' : '/',
assetPrefix: isDev ? '' : '/',
};
export default nextConfig;
```
## Update Deploy commands in package.json
```
"predeploy": "npm run build",
"deploy": "npx gh-pages -d out --nojekyll"
```