Squashed commit of the following: commit 0a620148dfad998f7b00804cae1db8208b23cc02 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Mar 2 15:08:36 2018 +0000 Add tests for the Cors Headers commit dd8518d279cdf3857597fa7ee6150bf383203fe1 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Mar 2 15:08:20 2018 +0000 Only add Cors Headers to requests to the media endpoint commit 6c79ca5632581345ef406f211b1576a4b7f400fe Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Mar 2 15:07:53 2018 +0000 Add CorsHeaders to middleware array commit e12d48ca1e837b14b75bbd87d6197d59d60cf32e Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Mar 2 15:06:32 2018 +0000 We need to send something to the OPTIONS request to the media endpoint commit f11c638be464373bff09bf015d4a989e48e61f0c Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Mar 2 15:05:45 2018 +0000 Change routes to allow for responses to an OPTIONS request to the media endpoint |
||
---|---|---|
app | ||
bootstrap | ||
config | ||
database | ||
public | ||
resources | ||
routes | ||
scripts | ||
storage | ||
tests | ||
travis | ||
.editorconfig | ||
.env.dusk.testing | ||
.env.example | ||
.env.travis | ||
.eslintrc.yml | ||
.gitattributes | ||
.gitignore | ||
.styleci.yml | ||
.stylelintrc | ||
.travis.yml | ||
artisan | ||
changelog.md | ||
composer.json | ||
composer.lock | ||
helpers.php | ||
license.md | ||
package-lock.json | ||
package.json | ||
phpcs.xml | ||
phpunit.xml | ||
readme.md | ||
server.php | ||
webpack.config.js |
jonnybarnes.uk
This is the code that runs my website, jonnybarnes.uk.
In theory this is usable by other now :D
Set up the database, this software needs PostgreSQL with the PostGIS plugin. After installing these:
$ createdb -E utf8 db_name
$ psql -d db_name -c 'CREATE EXTENSION postgis'
First get the code, and make sure you’re on the master
branch. This branch will
only have tagged releases:
$ git clone https://github.com/jonnybarnes/jonnybarnes.uk mysite.com
$ cd mysite.com
$ git checkout master
Then we need to set up the environment variables that the app will use.
$ cp .env.example .env
$ vim .env
Fill in the various variables. Then we can set up the app:
$ composer install
$ php artisan key:generate
$ php artisan migrate
Now we need to edit some config values. In config/app.php
edit name
, and in
config/syndication.php
edit it to the appropriate values or set targets to []
.
Some other things that should be changed. Go to resources/views/master.blade.php
,
you may not want to link to a projects page. Also in the <head>
the two last links
are to my profile pic and pgp key, ammend/remove as desired.
Now point your server to public/index.php
and viola. Essentially this is a
Laravel app so debugging things shouldn’t be too hard.