Skip to content

Commit

Permalink
fix vagrant invalid file path error, update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Merrell committed Aug 12, 2017
1 parent f9c7912 commit 7ca5528
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ config.cfg
gochan
log/
lib/
vagrant/.vagrant/
vagrant/ubuntu-xenial-16.04-cloudimg-console.log
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
# Gochan

A multi-threaded imageboard server written in Go

http://gochan.org


Installation
------------
## Installation

### Basic installation
Coming soon!


Documentation
-------------

Coming soon!
### For developers (using Vagrant)
1. Install Vagrant and Virtualbox. Vagrant lets you create a virtual machine and run a custom setup/installation script to make installation easier and faster.
2. From the command line, cd into vagrant/ and run `vagrant up`
3. After it finishes installing the Ubuntu VM, follow the printed instructions.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions vagrant/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ EOF123
service mysql restart &
wait
rm -f /etc/nginx/sites-enabled/* /etc/nginx/sites-available/*
cp -f /vagrant/gochan.nginx /etc/nginx/sites-available/gochan.nginx
cp -f /vagrant/gochan-fastcgi.nginx /etc/nginx/sites-available/gochan.nginx
ln -sf /etc/nginx/sites-available/gochan.nginx /etc/nginx/sites-enabled/

# VirtualBox shared folders don't play nicely with sendfile.
Expand Down Expand Up @@ -88,4 +88,4 @@ echo
echo "Server set up, please run \"vagrant ssh\" on your host machine, and"
echo "\"cd ~/gochan && ./gochan\" in the guest. Then browse to http://172.27.0.3/manage"
echo "to complete installation (TODO: add further instructions as default initial announcement"
echo "or /manage?action=firstrun)"
echo "or /manage?action=firstrun)"

0 comments on commit 7ca5528

Please sign in to comment.