Skip to content

Commit 88a4f40

Browse files
committed
Initial drop.
0 parents  commit 88a4f40

File tree

12 files changed

+2824
-0
lines changed

12 files changed

+2824
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/app/cache/*
2+
/app/config/sculpin_kernel_*.yml
3+
/app/config/sculpin_site_*.yml
4+
/app/logs/*
5+
/output_*/
6+
/source/components/
7+
/vendor/
8+
publish.sh

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Stack Website
2+
=============
3+
4+
This repository contains (almost) everything that makes up
5+
[stackphp.com](http://stackphp.com).
6+
7+
Powered by [Sculpin](http://sculpin.io). =)
8+
9+
10+
Build
11+
-----
12+
13+
### If You Already Have Composer
14+
15+
composer install
16+
vendor/bin/sculpin generate --watch --server
17+
18+
Your newly generated clone of [stackphp.com](http://stackphp.com) is now
19+
accessible at `http://localhost:8000/`.
20+
21+
### If You Need Composer
22+
23+
curl -s https://getcomposer.org/installer | php
24+
php composer.phar install
25+
vendor/bin/sculpin generate --watch --server
26+

app/config/sculpin_kernel.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
framework:
2+
secret: not so secret but required to be set

app/config/sculpin_site.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
title: Stack
2+
subtitle: HttpKernelInterface based middlewares

composer.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"license": "MIT",
3+
"authors": [
4+
{
5+
"name": "Igor Wiedler",
6+
"email": "igor@wiedler.ch"
7+
},
8+
{
9+
"name": "Beau Simensen",
10+
"email": "beau@dflydev.com",
11+
"homepage": "http://beausimensen.com"
12+
}
13+
],
14+
"require": {
15+
"sculpin/sculpin": "2.*@dev",
16+
17+
"components/bootstrap": "~2.3.1",
18+
"components/jquery": "~1.9.1",
19+
"components/highlightjs": "~7.3.0",
20+
"components/font-awesome": "~3.0.2@dev",
21+
22+
"dflydev/embedded-composer": "@dev",
23+
"michelf/php-markdown": "@beta",
24+
"composer/composer": "@dev"
25+
},
26+
"config": {
27+
"component-dir": "source/components"
28+
}
29+
}

0 commit comments

Comments
 (0)