mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 10:16:22 +02:00
Optimized init
This commit is contained in:
parent
4d0f0646df
commit
8abb5eaaac
14
README.md
14
README.md
@ -1,8 +1,20 @@
|
|||||||
# infinito (development status)
|
# infinito (development status)
|
||||||
This software allows users to automatize data sharing with people and IoT devices.
|
This software allows users to automatize data sharing with people and IoT devices.
|
||||||
|
|
||||||
## guide
|
## developer guide
|
||||||
In the administration folder you will find all necessary scripts to run and configure the application.
|
In the administration folder you will find all necessary scripts to run and configure the application.
|
||||||
|
|
||||||
|
This scripts are optimized for Ubuntu, but may they will run on MAC OS.
|
||||||
|
|
||||||
|
### initialization
|
||||||
|
|
||||||
|
To initialize the docker environment, please execute in the root:
|
||||||
|
|
||||||
|
```
|
||||||
|
bash administration/init.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
Afterwards you can access the service via http://127.0.0.1:80.
|
||||||
|
|
||||||
## license
|
## license
|
||||||
The "GNU AFFERO GENERAL PUBLIC LICENSE" applies to this project. See LICENSE.txt.
|
The "GNU AFFERO GENERAL PUBLIC LICENSE" applies to this project. See LICENSE.txt.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
(
|
(
|
||||||
cd $(dirname $(readlink -f ${0}));
|
cd $(dirname $(readlink -f ${0}));
|
||||||
bash ./submodule_sync.sh
|
bash ./submodule-init.sh
|
||||||
bash ./build.sh
|
bash ./build.sh
|
||||||
bash ./schema-update.sh
|
bash ./schema-update.sh
|
||||||
)
|
)
|
||||||
|
4
administration/submodule-init.sh
Normal file
4
administration/submodule-init.sh
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
(
|
||||||
|
cd $(dirname $(readlink -f ${0}))/../;
|
||||||
|
git submodule update --init --recursive
|
||||||
|
)
|
Loading…
x
Reference in New Issue
Block a user