summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md52
1 files changed, 0 insertions, 52 deletions
diff --git a/README.md b/README.md
index 9b544e3..e5672e1 100644
--- a/README.md
+++ b/README.md
@@ -4,55 +4,3 @@
A template project for mixed static / dynamic web applications.
-
-## Expected Environment
-
-- GNU/Linux
-- systemd
-- Git, make and python3 are installed
-
-
-## Current State
-
-This project is in **early development** state. Please be very careful. The scripts behind the make targets will install and uninstall files on your system without checking for existing files. This means that existing files from other sources could be overwritten or deleted. Have a look at the ```Makefile``` and ```manage.py``` for details.
-
-
-## Usage
-
-You can run this example or a web service based on this example like this:
-
-```
-git clone https://gitea.xengineering.eu/xengineering/web-template.git
-cd web-template
-nano settings.json # tweak to your needs
-make all
-make install
-sudo systemctl start <project_name> # default <project_name> is webtemplate
-curl http://localhost:<framework_port>/ # default <framework_port> is 28472
-```
-
-**Make sure to not edit settings.json until you uninstalled the project!**
-
-You can remove it like this:
-
-```
-sudo systemctl stop <project_name> # default <project_name> is webtemplate
-make uninstall
-make clean
-```
-
-You can also make your own project based on web-template:
-
-```
-git clone https://gitea.xengineering.eu/xengineering/web-template.git myproject
-cd myproject
-git remote rename origin template
-```
-
-You can then get updates from this template repository:
-
-```
-git fetch template
-git merge template/master
-```
-