blob: f54e893bc7951f5cbbc8ceacaa8bfe4eadf009d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Web Template
A template project for mixed static / dynamic web applications.
## Usage
Just follow these steps:
1. Edit config.json
2. Edit the files in the webroot folder
3. Upload the webroot to your target server with ```python3 manage.py deploy``` via SSH / rsync
### Use it for your Project
```
# start 'myproject' (rename it if you want to)
git clone https://gitea.xengineering.eu/xengineering/web-template.git myproject
cd myproject
git remote rename origin template
```
### Get the latest Updates from this template Project
```
git fetch template
git merge template/master
```
|