Fork this example project as a boilerplate for working with Vapor.
Check out the live demo running on Ubuntu.
View Vapor for documentation.
Swift 2.2 or later is required.
Works on Ubuntu, Docker, Heroku, OS X
Clone this repo and run ./run
to start your application.
You can also build it manually by running swift build
to download the
dependencies, then run .build/debug/App
.
Note: the run
script may contain fixes for bugs in SPM that may prevent you
from building with swift build
.
If you are having issues running, try clearing your downloaded files with
./clear
. Also, checkout Kylef's
swiftenv for ensuring you have the latest
version of Swift installed. If you have swiftenv
, run swiftenv install
inside your root folder to
install the proper version of Swift.
Check the Vapor documentation for more in-depth deployment instructions.
To deploy to Ubuntu 14.04 LTS (without Swift installed on remote server).
- Compile program on Ubuntu 14.04 (Swift must be installed on this computer)
- Copy program from
.build/[debug,release]/App
intoDeploy/App
- Copy contents of
Deploy
folder to remote Ubuntu 14.04 server (the folder contains all shared libs needed for running) - Run
./run.sh
To start your Vapor
site automatically when the server is booted, add this file to your server.
/etc/init/vapor-example.conf
description "Vapor Example"
start on startup
exec /home/<user_name>/vapor-example/.build/release/App --workDir=/home/<user_name>/vapor-example
You additionally have access to the following commands for starting and stopping your server.
sudo stop vapor-example
sudo start vapor-example
The following script is useful for upgrading your website.
git pull
swift build --configuration release
sudo stop vapor-example
sudo start vapor-example
You can run this demo application locally in a Linux environment using Docker.
- Ensure Docker is installed on your local machine.
- Start the Docker terminal
- cd into
vapor-example
- Build the container
docker build -t vapor .
- Run the container
docker run -it -p 8080:8080 vapor
- Configure VirtualBox to forward ports 8080 to 8080
- Visit http://0.0.0.0:8080
You can also run your Vapor app through Nginx. It’s recommended you use Supervisor to run the app instance to protect against crashes and ensure it’s always running.
To setup Vapor running through Supervisor, follow these steps:
apt-get install -y supervisor
Edit the config below to match your environment and place it in /etc/supervisor/conf.d/your-app.conf
:
[program:your-app]
command=/path/to/app/.build/release/App serve --ip=127.0.0.1 --port=8080
directory=/path/to/app
user=www-data
stdout_logfile=/var/log/supervisor/%(program_name)-stdout.log
stderr_logfile=/var/log/supervisor/%(program_name)-stderr.log
Now register the app with Supervisor and start it up:
supervisorctl reread
supervisorctl add your-app
supervisorctl start your-app # `add` may have auto-started, so disregard an “already started” error here
With the app now running via Supervisor, you can use this sample nginx config to proxy it through Nginx:
server {
server_name your.host;
listen 80;
root /path/to/app/Public;
# Serve all public/static files via nginx and then fallback to Vapor for the rest
try_files $uri @proxy;
location @proxy {
# Make sure the port here matches the port in your Supervisor config
proxy_pass http://127.0.0.1:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_connect_timeout 3s;
proxy_read_timeout 10s;
}
}