Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
d9be11eb92
|
@ -1,5 +1,21 @@
|
|||
## Installing PostgreSQL Database Server on Linux (Ubuntu) ##
|
||||
Execute the *install_postgresql_linux.sh* script to install PostgreSQL database
|
||||
|
||||
In the terminal, add the key to the keyring
|
||||
|
||||
`
|
||||
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
|
||||
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
|
||||
`
|
||||
|
||||
Update your repositories with
|
||||
|
||||
`sudo apt-get update`
|
||||
|
||||
Install postgresql
|
||||
|
||||
`
|
||||
sudo apt-get install postgresql
|
||||
`
|
||||
*NB: PostgreSQL DB Server runs on a default port of 5432.*
|
||||
|
||||
## Installing PostgreSQL Database Server on Windows ##
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
|
||||
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
|
||||
sudo apt-get update
|
||||
sudo apt-get install postgresql
|
|
@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|||
|
||||
[project]
|
||||
name = "cerc_hub"
|
||||
version = "0.1.7"
|
||||
version = "0.1.7.1"
|
||||
description = "CERC Hub consist in a set of classes (Central data model), importers and exporters to help researchers to create better and sustainable cities"
|
||||
readme = "README.md"
|
||||
authors = [{ name = "Guillermo Gutierrez", email = "Guillermo.GutierrezMorote@concordia.ca" }]
|
||||
|
|
Loading…
Reference in New Issue
Block a user