mirror of
https://github.com/sp-tarkov/db-website.git
synced 2025-02-02 17:49:21 -05:00
The CacheService has been rewritten to clone/pull the server repo for direct access to the data files that are needed to build the cache.
SPT DB Items Search
Source for the SPT DB Item Lookup website hosted at: https://db.sp-tarkov.com
Local Build
Requirements:
- Node v20.12
- Bun v1.1
Clone the repository into a local directory.
Build the front-end:
cd frontend
npm install
npm run build
Move the front-end build into the back-end public directory:
mkdir -p ../api/public
cp -r dist/* ../api/public/
Build the back-end:
cd ../api
cp .env.example .env
bun install
Start the local server:
bun run start
Development with Docker
docker build --build-arg PROD=false -t db-website:local .
docker run -p 3001:3001 db-website:local
- Visit http://localhost:3001
Description
Languages
TypeScript
97.5%
Dockerfile
1.5%
HTML
1%