Skip to content

wlonestar/simple-fts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

simple-fts

A simple full text search implementation using PostgreSQL.

Rear end: Spring Boot 3.x

Front end: React.

Usage

  1. clone this repository
git clone https://github.com/wlonestar/simple-fts.git && cd simple-fts
  1. update system and install build tools
make config
  1. modify postgresql database pasword
sudo -u postgres psql postgres
# alter user postgres with password '123456';
  1. install essential apps: jdk, node, etc
make env
  1. install pg extension and create databse from script
make db

Deploy

  1. config /etc/nginx/nginx.conf using nginx.conf, replace IP with server ip

  2. run

make run