Demo play around
Laravel & Vue backend repository
Introducing the Free Page Builder, Listing Directory, Blog, and Job Board Theme! Are you searching for a powerful yet user-friendly theme to manage listings, jobs, or blog posts? Look no further! Our theme is designed to provide a seamless experience for both administrators and users, thanks to its robust features and intuitive Page Builder.
This theme includes:
The built-in Page Builder is packed with features:
Empower users to create the perfect listings, jobs, or blog posts with the Page Builder.
Make sure to install the dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Start the development server on http://localhost
:
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
Build the application for production:
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview
PM2 (Process Manager 2) is a fast and easy solution for hosting your Nuxt application on your server or VM. To use pm2, use an ecosystem.config.cjs: ecosystem.config.cjs
module.exports = {
apps: [
{
name: "NuxtAppName",
port: "3000",
exec_mode: "cluster",
instances: "max",
script: "./.output/server/index.mjs"
}
]
};
npm run build
Identify the process using port 3000.
lsof -i :3000
Kill:
kill -9 21995
-9 The -9 is the signal number that corresponds to the SIGKILL signal in Unix-like operating systems. The SIGKILL signal is a special signal that forcefully terminates a process. It does not allow the process to perform any cleanup or handle the signal in any way – it immediately terminates the process.
Get Process ID. Remember to install pm2 globally
pm2 status
Restart Process. If process ID is 0
pm2 restart 0
Thank you for considering contributing to this project!
If you discover a security vulnerability, please send me an e-mail.
If you have any questions or if you're looking for customization, feel free to connect with me on LinkedIn and send me a message.
I would love to hear your feedback, suggestions, or any issues you encounter while using this app. Feel free to reach out to me if you have any questions or just want to say hello.
I would greatly appreciate it if you could star the GitHub repository. Starring the project helps to boost its visibility and encourages me to continue adding new features.
This project is open-sourced software licensed under the MIT license.