chatgpt-web
ChatGPT web interface using the OpenAI API
File Explorer
Download Latest Version (.zip)- lint.yml
- pages.yml
- dependabot.yml
- screenshot.png
- extensions.json
- settings.json
- tasks.json
- Dockerfile-mockapi
- mock_api.py
- models_response.json
- update-prompts.mjs
- logo.ico
- logo.png
- logo.svg
- csv_linter.yml
- publish.yml
- contentcodex.png
- FUNDING.yml
- pull_request_template.md
- default.html
- find-prompt
- _config.yml
- CNAME
- CONTRIBUTING.md
- LICENSE
- prompts.csv
- README.md
- models.svelte
- providers.ts
- request.svelte
- util.svelte
- ApiUtil.svelte
- Chat.svelte
- ChatCompletionResponse.svelte
- ChatMenuItem.svelte
- ChatOptionMenu.svelte
- ChatRequest.svelte
- ChatSettingField.svelte
- ChatSettingsModal.svelte
- Code.svelte
- EditMessage.svelte
- Export.svelte
- Footer.svelte
- Home.svelte
- ImageStore.svelte
- Messages.svelte
- Models.svelte
- Navbar.svelte
- NewChat.svelte
- Profiles.svelte
- PromptConfirm.svelte
- PromptInput.svelte
- PromptNotice.svelte
- Prompts.svelte
- RouteState.ts
- Settings.svelte
- Sidebar.svelte
- Stats.svelte
- Storage.svelte
- Types.svelte
- Util.svelte
- additional-svelte-typings.d.ts
- app.scss
- App.svelte
- main.ts
- vite-env.d.ts
- migrated.json
- 128x128.png
- 128x128@2x.png
- 32x32.png
- icon.icns
- icon.ico
- main.rs
- .gitignore
- build.rs
- Cargo.lock
- Cargo.toml
- tauri.conf.json
- .all-contributorsrc
- .env
- .gitignore
- docker-compose.yml
- Dockerfile
- eslint.config.js
- index.html
- LICENSE
- package-lock.json
- package.json
- README.md
- svelte.config.js
- tsconfig.json
- tsconfig.node.json
- vite.config.ts
# Installation Guide
1. Get the code
git clone https://github.com/Niek/chatgpt-web
Downloads the entire project code from GitHub to your computer.
cd chatgpt-web
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose up -d
Builds and starts all defined containers (server, database, etc.) at once, in the background.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
Pulled directly from this repo's README.
3. Node.js
EasyPrerequisites
npm ci
Type this command into your terminal and run it.
npm run dev
Starts the development/run server.
npm run build
Builds optimized production files.
npm run update-prompts
Type this command into your terminal and run it.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
Pulled directly from this repo's README.
4. Rust
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cd src-tauri
This project's files live in a subfolder, so move into it first.
cargo build --release
Compiles the Rust project.
cargo run
Builds and then immediately runs the program.
If cargo build finishes without errors, it worked. The executable is created under target/.
// repository documentation
Was this content helpful?
(0 ratings)
