Update documentation and build to only mention PostgreSQL rather than CouchDB.
This commit is contained in:
parent
bdeda86c92
commit
b2fd7ec7eb
|
@ -17,12 +17,12 @@ below technologies (and many more). Thank you!!!
|
|||
|
||||
| Language | Webapp Framework | Database |
|
||||
| :---: | :---: | :---: |
|
||||
|  | <img alt="Flask" src="http://flask.pocoo.org/static/logo/flask.svg" width=200 /> | <img alt="CouchDB" src="http://couchdb.apache.org/image/logo@2x.png" width=200 /> |
|
||||
| [Python](https://www.python.org/) | [Flask](http://flask.pocoo.org/) | [CouchDB](http://couchdb.apache.org/) |
|
||||
|  | <img alt="Flask" src="http://flask.pocoo.org/static/logo/flask.svg" width=200 /> | <img alt="PostgreSQL" src="https://www.postgresql.org/files/community/propaganda/95x51_4.gif" /> |
|
||||
| [Python](https://www.python.org/) | [Flask](http://flask.pocoo.org/) | [PostgreSQL](https://www.postgresql.org/) |
|
||||
|
||||
### Client Side
|
||||
|
||||
| Language | JS Frameworks | CSS Frameworks | Code Editor |
|
||||
| :---: | :---: | :---: | :---: |
|
||||
| <img src="https://raw.githubusercontent.com/voodootikigod/logo.js/master/js.png" alt="JS" width=100 /> | <img alt="React" src="https://facebook.github.io/react/img/logo.svg" width=100 /> <img alt="Redux" src="https://camo.githubusercontent.com/f28b5bc7822f1b7bb28a96d8d09e7d79169248fc/687474703a2f2f692e696d6775722e636f6d2f4a65567164514d2e706e67" width=200 /> |  <img alt="Bootstrap" src="http://getbootstrap.com/assets/brand/bootstrap-solid.svg" width=100 />|  |
|
||||
| [ES6](http://www.ecma-international.org/publications/standards/Ecma-262.htm) | [React](https://facebook.github.io/react/) + [Redux](http://redux.js.org/) | [Less](http://lesscss.org/) + [Bootstrap](http://getbootstrap.com/) | [CodeMirror](https://codemirror.net/)
|
||||
| <img src="https://raw.githubusercontent.com/voodootikigod/logo.js/master/js.png" alt="JS" width=100 /> | <img alt="React" src="https://facebook.github.io/react/img/logo.svg" width=100 /> <img alt="Redux" src="https://camo.githubusercontent.com/f28b5bc7822f1b7bb28a96d8d09e7d79169248fc/687474703a2f2f692e696d6775722e636f6d2f4a65567164514d2e706e67" width=200 /> |  <img alt="Bootstrap" src="http://getbootstrap.com/assets/brand/bootstrap-solid.svg" width=100 />|  |
|
||||
| [ES6](http://www.ecma-international.org/publications/standards/Ecma-262.htm) | [React](https://facebook.github.io/react/) + [Redux](http://redux.js.org/) | [Less](http://lesscss.org/) + [Bootstrap](http://getbootstrap.com/) | [CodeMirror](http://codemirror.net/)
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
* :support:`26` Switch over from CouchDB 1.6 to PostgreSQL 9.6.
|
||||
* :support:`17` Upgrade API to use latest stable versions of Python 3.5.
|
||||
* :support:`17` Add in dumb-init for better control of starting services.
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ In the meantime, please refer to the development guide below.
|
|||
|
||||
- Python 2.7
|
||||
- NodeJS 6.9 + ES6
|
||||
- CouchDB 1.6
|
||||
- PostgreSQL 9.6
|
||||
- Docker + docker-compose
|
||||
- [Rote (Rust make replacement)](https://github.com/sagebind/rote) with [Lua](https://www.lua.org/)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ A developer and designer friendly web platform for building gorgeous sites, blog
|
|||
|
||||
**Rookeries** is:
|
||||
|
||||
- Powered by Flask, Python and CouchDB on the server side.
|
||||
- Powered by Flask, Python and PostgreSQL on the server side.
|
||||
- Uses React, Reflux, ES6 and LESS to build responsive single page apps.
|
||||
- Licensed under the Affero GNU General Public License (AGPL) version 3.0.
|
||||
|
||||
|
|
|
@ -5,8 +5,7 @@ machine:
|
|||
# Borrowed from: https://github.com/mozilla/embedly-proxy
|
||||
dependencies:
|
||||
pre:
|
||||
# Uninstall the CouchDB instance provided by default.
|
||||
- if [ ! -z "$(dpkg -l | grep couchdb)" ]; then sudo rm -f /etc/rc2.d/K80couchdb; sudo apt-get -y purge couchdb couchdb-bin couchdb-common; fi
|
||||
# Uninstall the PostgreSQL instance provided by default.
|
||||
- if [ ! -z "$(dpkg -l | grep postgresql)" ]; then sudo apt-get -y purge postgresql*; fi
|
||||
|
||||
# Keep the docker cache dir.
|
||||
|
|
|
@ -4,7 +4,7 @@ A developer and designer friendly web platform for building gorgeous sites, blog
|
|||
|
||||
**Rookeries** is:
|
||||
|
||||
- Powered by Flask, Python and CouchDB on the server side.
|
||||
- Powered by Flask, Python and PostgreSQL on the server side.
|
||||
- Uses React, Redux, ES6 and LESS to build responsive single page apps.
|
||||
- Licensed under the Affero GNU General Public License (AGPL) version 3.0.
|
||||
|
||||
|
@ -23,7 +23,7 @@ In the meantime, please refer to the development guide below.
|
|||
|
||||
- Python 2.7
|
||||
- NodeJS 6.9 + ES6
|
||||
- CouchDB 1.6
|
||||
- PostgreSQL 9.6
|
||||
- Docker + docker-compose
|
||||
- [Rote (Rust make replacement)](https://github.com/sagebind/rote) with [Lua](https://www.lua.org/)
|
||||
|
||||
|
|
Loading…
Reference in New Issue