File: README.md

package info (click to toggle)
auto-editor 26.3.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 884 kB
  • sloc: python: 8,445; xml: 68; javascript: 27; makefile: 26
file content (42 lines) | stat: -rw-r--r-- 599 bytes parent folder | download
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Source Code, Documents, and Resources for https://auto-editor.com.

## Requirements
 - BunJS
 - Python
 - Nim
 - rsync and ssh (for deployment)

```
# Compile Nim, get resources
make compile

# Run local
python build.py 
make

# Publish
make upload
```

## Server Requirements
 - systemd
 - reverse proxy (nginx, etc)
 - BunJS

## Deployment Example

file `/etc/systemd/system/ae.service`

```
[Unit]
Description=AutoEditor Website
After=network.target

[Service]
User=root
WorkingDirectory=/var/www/auto-editor
ExecStart=/root/.bun/bin/bun run server.js

[Install]
WantedBy=multi-user.target
```