You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-79Lines changed: 3 additions & 79 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -117,86 +117,10 @@ http {
117
117
NGINX compression is disabled by default.
118
118
With compression enabled, the amount of data transferred can be significantly reduced, resulting in a reduction in transfer time, especially on slow networks.
The current codebase can be executed by running development servers for the frontend and the backend. The development servers will automatically reload when the codebase is changed.
152
-
153
-
Start both development servers at the same time (requires an active tmux session):
154
-
155
-
```console
156
-
$ make run
157
-
```
158
-
159
-
Alternatively, start the development servers for the frontend and the backend separately:
160
-
161
-
```console
162
-
$ make run_frontend
163
-
```
164
-
165
-
```console
166
-
$ make run_backend
167
-
```
168
-
169
-
After a successful start of the development servers, the web app can be reached on `http://127.0.0.1:8000`.
170
-
171
-
### Building a distribution package
172
-
173
-
```console
174
-
$ make dist
175
-
```
176
-
177
-
### Deploying the application
178
-
179
-
Deploy the latest distribution package.
180
-
181
-
```console
182
-
$ fab -H user@host deploy
183
-
```
184
-
185
-
### Changing the database schema
186
-
187
-
Create a migration script after changing the SQLAlchemy ORM model.
The current codebase can be executed by running development servers for the frontend and the backend. The development servers will automatically reload when the codebase is changed.
33
+
34
+
Start both development servers at the same time (requires an active tmux session):
35
+
36
+
```console
37
+
$ make run
38
+
```
39
+
40
+
Alternatively, start the development servers for the frontend and the backend separately:
41
+
42
+
```console
43
+
$ make run_frontend
44
+
```
45
+
46
+
```console
47
+
$ make run_backend
48
+
```
49
+
50
+
After a successful start of the development servers, the web app can be reached on `http://127.0.0.1:8000`.
51
+
52
+
## Building a distribution package
53
+
54
+
```console
55
+
$ make dist
56
+
```
57
+
58
+
## Deploying the application
59
+
60
+
Deploy the latest distribution package.
61
+
62
+
```console
63
+
$ fab -H user@host deploy
64
+
```
65
+
66
+
## Changing the database schema
67
+
68
+
Create a migration script after changing the SQLAlchemy ORM model.
0 commit comments