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
```
|