Skip to content

Commit 20f2e6b

Browse files
committed
pgtabs is going public
0 parents  commit 20f2e6b

29 files changed

+15506
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build/*
2+
node_modules/*

README.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# PGTABS
2+
3+
Tabbed SQL interface for Postrgesql.
4+
5+
## Building
6+
Project is under development. There no platform builds provided yet.
7+
8+
Prerequisities:
9+
10+
Install (NWJS)[http://nwjs.io] (former Node Webkit).
11+
12+
Install (NPM)[https://www.npmjs.com].
13+
14+
Run:
15+
16+
npm install -g nw-gyp
17+
npm install -g jsx
18+
19+
git clone
20+
cd pgtabs
21+
npm install
22+
23+
cd node_modules/libpq
24+
nw-gyp configure
25+
nw-gyp build
26+
27+
cd ../../
28+
jsx src/ build/
29+
30+
nwjs .
31+
32+
## Using
33+
34+
There are two basic shortcuts:
35+
36+
Windows/Linux:
37+
- _Ctrl+R_ run script
38+
- _Ctrl+B_ cancel execution
39+
40+
Mac OSX:
41+
- _Command+R_ run script
42+
- _Command+B_ cancel execution
43+
44+

0 commit comments

Comments
 (0)