mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
13 lines
128 B
Bash
13 lines
128 B
Bash
#!/bin/bash
|
|
|
|
|
|
|
|
# Start the nginx server
|
|
service nginx start
|
|
|
|
# Start the frontend server
|
|
bun run server.cjs
|
|
|
|
tail -f /dev/null
|
|
|