Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Poduptime
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
diasporg
Poduptime
Commits
18bbd8a4
Commit
18bbd8a4
authored
Dec 21, 2016
by
David Morley
Committed by
GitHub
Dec 21, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #43 from noplanman/readme_gitignore
Update readme & .gitignore
parents
ba6693f3
bf58571d
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1075 additions
and
23 deletions
+1075
-23
.gitignore
.gitignore
+2
-0
README.md
README.md
+32
-23
composer.lock
composer.lock
+1041
-0
No files found.
.gitignore
View file @
18bbd8a4
bower_components
vendor
config.php
README.md
View file @
18bbd8a4
Poduptime
#
Poduptime
Poduptime is software to get live stats and data on listed Diaspora Pods.
Dependencies:
Dependencies:
```
php7.0 php7.0-curl php7.0-pgsql php-geoip php7.0-cli php7.0-common php7.0-json php7.0-readline
git
curl
...
...
@@ -10,31 +12,38 @@ wget
dnsutils
npm
nodejs nodejs-legacy
```
To Install:
git clone https://github.com/diasporg/Poduptime.git
cd Poduptime
sudo npm install -g bower
bower install
cp config.php.example config.php
If you need to setup your Postgresql/DB:
sudo adduser podupuser
sudo -u postgres bash -c "psql -c
\"
CREATE USER podupuser WITH PASSWORD 'MYpassword';
\"
"
sudo -u postgres bash -c "psql -c
\"
CREATE DATABASE podupdb;
\"
"
sudo -u postgres bash -c "psql -c
\"
GRANT ALL PRIVILEGES ON DATABASE podupdb TO podupuser;
\"
"
sudo nano /etc/postgresql/vx.x/main/pg_hba.conf
update your local line to allow md5 METHOD
restart postgresql
psql -u podupuser podupdb < db/tables.sql
edit config.php with your DB and file settings
To Install:
```
git clone https://github.com/diasporg/Poduptime.git
cd Poduptime
sudo npm install -g bower
bower install
cp config.php.example config.php
```
If you need to setup your Postgresql/DB:
```
sudo adduser podupuser
sudo -u postgres bash -c "psql -c \"CREATE USER podupuser WITH PASSWORD 'MYpassword';\""
sudo -u postgres bash -c "psql -c \"CREATE DATABASE podupdb;\""
sudo -u postgres bash -c "psql -c \"GRANT ALL PRIVILEGES ON DATABASE podupdb TO podupuser;\""
# update your local line to allow md5 METHOD
sudo nano /etc/postgresql/vx.x/main/pg_hba.conf
# restart postgresql
# import database structure
psql -u podupuser podupdb < db/tables.sql
```
Edit
`config.php`
to add your DB and file settings.
============================
Source for http://podupti.me
Source for http
s
://podupti.me
Poduptime is software to get live stats and data on listed Diaspora Pods.
Copyright (C) 2011 David Morley
...
...
@@ -50,4 +59,4 @@ Source for http://podupti.me
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see
<http://www.gnu.org/licenses/>
.
along with this program. If not, see
<http
s
://www.gnu.org/licenses/>
.
composer.lock
0 → 100644
View file @
18bbd8a4
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment