UI Built with SvelteKit, Tailwind CSS with Daisy UI and Flowbite Svelte for icons.
Once you've created a project and installed dependencies with npm install
or pnpm install
or yarn
:
Copy .env.example
into .env
and set all the variables accordingly.
- [Note] If the UI is running within a docker container and tailscale is being used then
OPENAI_API_HOST
value needs to be the fully qualified domain name of the server.
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
To create a production version of your app:
npm run build
You can preview the production build with npm run preview
.
docker pull nginx:alpine
docker build -t ask-frogs .
docker run -i -p 5173:5173 ask-frogs (interactive)
docker run -it -d --rm -p 5173:5173 ask-frogs (non-interactive)