https://github.com/pixelsdb/pixels-rover
The web UI of PixelsDB.
https://github.com/pixelsdb/pixels-rover
Last synced: 2 months ago
JSON representation
The web UI of PixelsDB.
- Host: GitHub
- URL: https://github.com/pixelsdb/pixels-rover
- Owner: pixelsdb
- License: apache-2.0
- Created: 2022-05-26T16:20:26.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-11-07T14:58:29.000Z (over 1 year ago)
- Last Synced: 2024-11-07T15:39:23.803Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 5.86 MB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pixels-rover
The web UI of Pixels.
Watch the demonstration video:
[](https://www.bilibili.com/video/BV1awDQYcEsN/?vd_source=da6f80d8fe2bab1291999a9535251c78)
[Download the Video](video/pixels-rover-720p.mp4)
## Install Step-by-Step
Login MySQL and create a user and create a pixels_rover database for Pixels:
```sql
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
```yaml
# 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
```