Hosting
hosting
to host studyap, you need a few third-party services.
honeycomb
- register for an account at honeycomb.io
- create an API key and keep it somewhere for use in cloudflare workers
turso
- register for an account at turso.tech
- install the turso cli, login with
turso auth login
- create a db using
turso db create <db name>
- get the db url using
turso db show --url <db name>
- get an auth token using
turso db tokens create <db name>
- store the db url and auth token somewhere for use in cloudflare workers
mailgun
- register for an account at mailgun
- go to
Send > Domains > Add new domain
, enter your domain name - proceed with mailgun’s instructions on adding your own domain
- create an api key
- store the api key somewhere for use in cloudflare workers
cloudflare workers
- register for an account at cloudflare
- run
pnpm deploy:api
, this will open an authorization prompt in the browser - accept the authorization and wait for the command to finish
- copy the worker api link outputted by the command (ex.
https://studyap.<some user>.workers.dev
) - go to dash.cloudflare.com > workers & pages
- click on the “studyap” worker > settings > variables
- add the following variables to the worker
OPENAI_API_KEY="..."
# or
GOOGLE_API_KEY="..."
HONEYCOMB_API_KEY="..."
MAILGUN_API_KEY="..."
MAILGUN_DOMAIN="..."
# use turso db url/api key
DATABASE_URL="..."
DATABASE_AUTH_TOKEN="..."
static site
- register for an account at netlify
- add new site > connect to git provider
- authorize github, then allow/select the studyap repository
- set the site name, change “public directory” to
dist
- add the following environment variables
VITE_API_URL="<worker api link>"