mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
Finalized makefile and install instructions
This commit is contained in:
2
Makefile
2
Makefile
@@ -23,7 +23,7 @@ install:
|
|||||||
chmod +x /etc/init.d/cowyo.init
|
chmod +x /etc/init.d/cowyo.init
|
||||||
mv jinstall/cowyo.nginx /etc/nginx/sites-available/cowyo.nginx
|
mv jinstall/cowyo.nginx /etc/nginx/sites-available/cowyo.nginx
|
||||||
rm /etc/nginx/sites-enabled/cowyo.nginx
|
rm /etc/nginx/sites-enabled/cowyo.nginx
|
||||||
ln -s /etc/nginx-sites-available/cowyo.nginx /etc/nginx/sites-enabled/cowyo.nginx
|
ln -fs /etc/nginx/sites-available/cowyo.nginx /etc/nginx/sites-enabled/cowyo.nginx
|
||||||
/etc/init.d/nginx reload
|
/etc/init.d/nginx reload
|
||||||
/etc/init.d/nginx restart
|
/etc/init.d/nginx restart
|
||||||
/etc/init.d/cowyo.init restart
|
/etc/init.d/cowyo.init restart
|
||||||
|
|||||||
32
README.md
32
README.md
@@ -16,11 +16,39 @@ Be cautious about writing sensitive information in the notes as anyone with the
|
|||||||
|
|
||||||
# Install
|
# Install
|
||||||
|
|
||||||
`go install github.com/schollz/cowyo`
|
To get started on your local network just do:
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone https://github.com/schollz/cowyo.git
|
||||||
|
cd cowyo
|
||||||
|
make
|
||||||
|
./cowyo -p :8001 LOCALIPADDRESS
|
||||||
|
```
|
||||||
|
|
||||||
|
and then goto the address `http://LOCALIPADDRESS:8001/`
|
||||||
|
|
||||||
## Production server
|
## Production server
|
||||||
|
|
||||||
I recommend using `NGINX` as middleware, as it will do caching of the static files for you. There is an example `NGINX` block in `install/`.
|
I recommend using `NGINX` as middleware, as it will do caching of the static files for you. There is an example `NGINX` block in `install/`. To automatically install, on Raspberry Pi / Ubuntu / Debian system use:
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone https://github.com/schollz/cowyo.git
|
||||||
|
cd cowyo
|
||||||
|
nano Makefile <--- EDIT Makefile to include YOUR EXTERNAL ADDRESS
|
||||||
|
make && sudo make install
|
||||||
|
```
|
||||||
|
|
||||||
|
Now the program starts and stops with
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo /etc/init.d/cowyo start|stop|restart
|
||||||
|
```
|
||||||
|
|
||||||
|
Edit your crontab (`sudo crontab -e`) to start on boot:
|
||||||
|
|
||||||
|
```
|
||||||
|
@reboot /etc/init.d/cowyo start
|
||||||
|
```
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user