Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 905 Bytes

README.md

File metadata and controls

32 lines (27 loc) · 905 Bytes

pixels-rover

The web UI of Pixels.

Watch the demonstration video: IMAGE Download the Video

Install Step-by-Step

Login MySQL and create a user and create a pixels_rover database for Pixels:

CREATE USER 'pixels'@'%' IDENTIFIED BY 'password';
CREATE DATABASE pixels_rover;
GRANT ALL PRIVILEGES ON pixels_rover.* to 'pixels'@'%';
FLUSH PRIVILEGES;

Use db/pixels_rover.sql to create tables in pixels_rover

Adjust the configuration in the application.properties file

# mysql username
spring.datasource.username=pixels
# mysql password
spring.datasource.password=password
# pixels_rover port
server.port=8081
# text to sql url
text2sql.url=http://localhost/text2sql
# pixels server port
pixels.server.port=18890