KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
godeploy
★ 16
Open GitHub ↗
:warning: Abandoned :warning:
Download README (.md)
Explore Similar Repositories
fuel-nestedsets
:
Do not use! Fuel's ORM now has built-in support for nested sets!
twss-classifier
:
A That's What She Said classifier, built off a simple unigram Naive Bayes model.
ServiceStack.Benchmarks
:
Benchmark and performance related projects for Service Stack's components
bandlogos
:
BandLogos is a simple application that generate a banner of logos based on your last.fm statistics. At its peak, it had over 100k users.
input-tests
:
Tests for Mozilla Input website.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
godeploy
?
Download (.md)
GoDeploy - [www.godeploy.com](http://www.godeploy.com/) [](https://travis-ci.org/asgrim/godeploy) Requirements ------------ * Linux * PHP 5.5 * Composer * Bower Install ------- ```bash $ git clone git@github.com:asgrim/godeploy.git $ cd godeploy $ git checkout [version] $ composer install --no-dev $ bower install ``` Replace `[version]` with the version you wish to use (just use `master` for latest). Then copy `config/autoload/local.php.dist` to `config/autoload/local.php` and configure as you please (documentation does not exist for the structure yet...). You'll need to create a MySQL database using `data/schema.sql` and override the database settings by copy `config/autoload/database.local.php.dist` to `config/autoload/database.local.php` and configuring your MySQL settings. Generate the SSH private/public key to use, and put them in `data/ssh/id_rsa` and `data/ssh/id_rsa.pub` - if you put them elsewhere or use existing SSH keys, make sure to update the path in `config/autoload/local.php` - make sure they are accessible to PHP process. Create cron job (note must run under www-data user): ```bash $ sudo -u www-data crontab -e * * * * * /usr/bin/php /home/godeploy-new/public/index.php update-repositories >/dev/null ``` Upgrade ------- ```bash $ git fetch origin $ git checkout [version] $ composer install --no-dev $ bower install ```