興味 means - interest/curiousity/zest (for something). The idea is to create a way to share and organize topics for discussion completely anonymously.
If you are not familiar with the different technologies used in this project, please refer to the respective docs.
Ensure you have node and pnpm installed before proceeding. The following instructions assume you are on Linux, macOS, or WSL.
- Clone the repository:
git clone https://github.com/jwyce/kyoumi
- Navigate to the project directory:
cd kyoumi
- Install dependencies:
pnpm i
- Copy the
.env.example
file to.env
and fill in the required environment variables (follow the instructions under the deployment section for setting up SAAS providers and getting secrets) - Migrate the database (for the first time):
pnpm db:migrate
- Run the web app:
pnpm dev
- Click on the URL in the terminal output (defaults to
http://localhost:3000/
)
You can deploy this project to Vercel using the following steps:
- Fork this repo and select the project in Vercel.
- Create a new database with the Turso CLI and copy the
TURSO_CONNECTION_URL
andTURSO_AUTH_TOKEN
and add them to the environment variables in Vercel. - Deploy a meilisearch instance to railway following this guide and copy the
MEILI_HOST
andMEILI_MASTER_KEY
and add the environment variables in Vercel - Create a new app in uploadthing and copy the
UPLOADTHING_TOKEN
and add to environment variables in Vercel - Create a new redis database in upstash and add the
UPSTASH_REDIS_REST_URL
andUPSTASH_REDIS_REST_TOKEN
to the environment variables in Vercel - Finally create and add a strong
PASSWORD
environment variable to Vercel (this will be how users will access the app for the first time) - Deploy the project and you are good to go!