Remove Nitrous installation files
This commit is contained in:
parent
f73d0d2ac9
commit
6c43ab7dfc
|
|
@ -12,7 +12,6 @@ Makefile
|
||||||
*.sh
|
*.sh
|
||||||
app.json
|
app.json
|
||||||
bower.json
|
bower.json
|
||||||
nitrous.json
|
|
||||||
package.json
|
package.json
|
||||||
Vagrantfile
|
Vagrantfile
|
||||||
web.config
|
web.config
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ Improvements:
|
||||||
* Simplify `.htaccess` to avoid potential issues with possible specific Apache configurations
|
* Simplify `.htaccess` to avoid potential issues with possible specific Apache configurations
|
||||||
* Replace notifications Javascript code by CSS
|
* Replace notifications Javascript code by CSS
|
||||||
* Refactoring of user mentions job
|
* Refactoring of user mentions job
|
||||||
|
* Remove nitrous installer
|
||||||
|
|
||||||
Breaking changes:
|
Breaking changes:
|
||||||
|
|
||||||
|
|
|
||||||
1
Makefile
1
Makefile
|
|
@ -33,7 +33,6 @@ archive:
|
||||||
@ rm -rf ${BUILD_DIR}/kanboard/*.js
|
@ rm -rf ${BUILD_DIR}/kanboard/*.js
|
||||||
@ rm -rf ${BUILD_DIR}/kanboard/.dockerignore
|
@ rm -rf ${BUILD_DIR}/kanboard/.dockerignore
|
||||||
@ rm -rf ${BUILD_DIR}/kanboard/docker
|
@ rm -rf ${BUILD_DIR}/kanboard/docker
|
||||||
@ rm -rf ${BUILD_DIR}/kanboard/nitrous*
|
|
||||||
@ cd ${BUILD_DIR}/kanboard && find ./vendor -name doc -type d -exec rm -rf {} +;
|
@ cd ${BUILD_DIR}/kanboard && find ./vendor -name doc -type d -exec rm -rf {} +;
|
||||||
@ cd ${BUILD_DIR}/kanboard && find ./vendor -name notes -type d -exec rm -rf {} +;
|
@ cd ${BUILD_DIR}/kanboard && find ./vendor -name notes -type d -exec rm -rf {} +;
|
||||||
@ cd ${BUILD_DIR}/kanboard && find ./vendor -name test -type d -exec rm -rf {} +;
|
@ cd ${BUILD_DIR}/kanboard && find ./vendor -name test -type d -exec rm -rf {} +;
|
||||||
|
|
|
||||||
|
|
@ -110,7 +110,6 @@ Technical details
|
||||||
- [Run Kanboard with Docker](docker.markdown)
|
- [Run Kanboard with Docker](docker.markdown)
|
||||||
- [Run Kanboard with Vagrant](vagrant.markdown)
|
- [Run Kanboard with Vagrant](vagrant.markdown)
|
||||||
- [Run Kanboard on Cloudron](cloudron.markdown)
|
- [Run Kanboard on Cloudron](cloudron.markdown)
|
||||||
- [Run Kanboard on Nitrous](nitrous.markdown)
|
|
||||||
|
|
||||||
### Configuration
|
### Configuration
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
Nitrous Quickstart
|
|
||||||
==================
|
|
||||||
|
|
||||||
Create a free development environment for this Kanboard project in the cloud on [Nitrous.io](https://www.nitrous.io) by clicking the button below.
|
|
||||||
|
|
||||||
<a href="https://www.nitrous.io/quickstart">
|
|
||||||
<img src="https://nitrous-image-icons.s3.amazonaws.com/quickstart.png" alt="Nitrous Quickstart" width=142 height=34>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
Simply access your site via the `Preview > 3000` link in the IDE.
|
|
||||||
|
|
@ -178,7 +178,6 @@
|
||||||
|
|
||||||
- [Запуск Kanboard на Cloudron](cloudron.markdown)
|
- [Запуск Kanboard на Cloudron](cloudron.markdown)
|
||||||
|
|
||||||
- [Запуск Kanboard на Nitrous](nitrous.markdown)
|
|
||||||
|
|
||||||
|
|
||||||
### Настройка[¶](#configuration "Ссылка на этот заголовок")
|
### Настройка[¶](#configuration "Ссылка на этот заголовок")
|
||||||
|
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
rm -rf ~/code/public_html
|
|
||||||
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y php5-sqlite
|
|
||||||
sudo apt-get clean
|
|
||||||
|
|
||||||
cd ~/code
|
|
||||||
mv kanboard public_html
|
|
||||||
cd public_html
|
|
||||||
composer install
|
|
||||||
cd ~/code
|
|
||||||
sudo chown -R nitrous:www-data public_html
|
|
||||||
sudo service apache2 reload
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"template": "php-apache",
|
|
||||||
"ports": [3000],
|
|
||||||
"name": "Kanboard",
|
|
||||||
"description": "Kanban project management software"
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue