Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/go-xorm/dbweb
Moved to https://gitea.com/xorm/dbweb
https://github.com/go-xorm/dbweb
golang mysqladmin
Last synced: 2 months ago
JSON representation
Moved to https://gitea.com/xorm/dbweb
- Host: GitHub
- URL: https://github.com/go-xorm/dbweb
- Owner: go-xorm
- Archived: true
- Created: 2014-10-25T06:29:10.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-12-12T10:52:12.000Z (about 6 years ago)
- Last Synced: 2024-08-04T04:06:00.484Z (6 months ago)
- Topics: golang, mysqladmin
- Language: JavaScript
- Homepage:
- Size: 3.58 MB
- Stars: 188
- Watchers: 26
- Forks: 46
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DBWeb
DBWeb is a web based database admin tool like phpmyadmin. It' written via
[xorm](http://github.com/go-xorm/xorm), [tango](http://github.com/lunny/tango), [nodb](http://github.com/lunny/nodb).# Screenshot
![dbweb](screenshot.png)
# UI Languages
Now support English and 简体中文.
# Database Supports
* MySQL
* PostgreSQL
* sqlite3 : build tag -sqlite3# Installation
```Go
go get github.com/go-xorm/dbweb
go install github.com/go-xorm/dbweb
```
# Build via makeIf you want to embbed the `langs`, `public` and `templats` to the binary, use the below command.
You have to install `make` before this.```Shell
TAGS="bindata" make generate build
```Notice: If you want to serve via HTTPS, you still put your *.pem files on the `home` directory.
# Run
```Shell
./dbweb -home=$GOPATH/src/github.com/go-xorm/dbweb/
``````Shell
./dbweb -helpdbweb version 0.2
-debug=false: enable debug mode
-help=false: show help
-https=false: enable https
-home=./: set the home dir which contain templates,static,langs,certs
-port=8989: listen port
```Then visit http://localhost:8989/
The default user is `admin` and password is also `admin`. You can change it after you logged in.