https://github.com/primaldjinn/jpt
Custom Chat GPT
https://github.com/primaldjinn/jpt
ai chatbot chatgpt
Last synced: 5 months ago
JSON representation
Custom Chat GPT
- Host: GitHub
- URL: https://github.com/primaldjinn/jpt
- Owner: PrimalDjinn
- Created: 2023-05-15T19:44:26.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-27T08:16:48.000Z (about 3 years ago)
- Last Synced: 2025-08-12T00:28:20.269Z (11 months ago)
- Topics: ai, chatbot, chatgpt
- Language: Vue
- Homepage:
- Size: 205 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Minimal Starter
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install the dependencies: Pick one of the following depending on your package manager:
```bash
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install
```
## Development Server
Start the development server on http://localhost:3000 - Development server won't work due to the way WebsSocketServer is Set Up - Skip to Production
```bash
# yarn
yarn dev
# npm
npm run dev
```
## Production
Build the application for production:
```bash
# yarn on linux
yarn build
# yarn on windows
yarn build:windows
# Or
# npm linux
npm run build
# npm windows
npm run build:windows
```
### Recommended: Locally start the built server
```bash
# yarn
yarn start
# npm
npm run start
```
You are basically done at this point. You can now deploy the `.output` directory to your server.
### Untested: Locally preview production build:
```bash
# yarn
yarn preview
# npm
npm run preview
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.