This guide will help you to set up the project in a production environment. This guide assumes that you have already installed conda, Java 11 and Bun (or another runtime environments) in your system.
conda env create -f environment.yml
conda activate beer-search-engine
The project has been developed using Bun as a package manager and runtime environment. If you don't have it installed, please follow the installation guide. Otherwise, if you prefer to use another package manager, you can use npm, yarn or pnpm.
cd frontend && bun install
or
cd frontend && npm install
or
cd frontend && yarn install
or
cd frontend && pnpm install
cd backend && make start
cd frontend && make start
The application will be available at http://localhost:3000.