Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yijunyu/ais
https://github.com/yijunyu/ais
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yijunyu/ais
- Owner: yijunyu
- Created: 2014-03-26T10:19:29.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2018-03-22T09:48:37.000Z (almost 7 years ago)
- Last Synced: 2024-11-06T03:46:26.140Z (about 2 months ago)
- Language: PHP
- Size: 432 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Installation
On a server with docker, you need to run the following command to install a mobile ownCloud server:
```
./setup.sh run
```## Development
To build mobile ownCloud from scratch, try:
```
./setup.sh
```## Setup Owncloud database
The set up the database for ownCloud, you need to create them if it has not existed:
```
docker run --rm --link docker-alpine-mysql:server --privileged -it mysql-test mysqladmin -h server -u root --password=mysql < init.sql
```The content of `init.sql` is listed here for information:
```
CREATE USER 'clouddbuser'@'server' IDENTIFIED BY 'cloudpassword';
CREATE DATABASE IF NOT EXISTS clouddb;
GRANT ALL PRIVILEGES ON clouddb.* TO 'clouddbuser'@'server' IDENTIFIED BY 'cloudpassword';
```Then restart the set up process:
```
./setup.sh
```Suppose the server has an IP address 40.68.173.115,
after that, you can point your browser to the following URL
to continue setting up the ownCloud
```
http://40.68.173.115/owncloud/index.php
```