mirror of
https://github.com/SrIzan10/ohmyform.git
synced 2026-05-01 10:55:11 +00:00
10 lines
162 B
Bash
10 lines
162 B
Bash
#!/bin/bash
|
|
|
|
line=$(head -n 1 /etc/hosts)
|
|
echo "$line tellform.dev $(hostname)" >> /etc/hosts
|
|
|
|
# Restart sendmail
|
|
service sendmail restart
|
|
|
|
# Run Server
|
|
npm start |