Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
carnage committed Jun 11, 2017
0 parents commit 785fb09
Show file tree
Hide file tree
Showing 12 changed files with 3,989 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
### Example user template template
### Example user template

# IntelliJ project files
.idea
*.iml
out
gen### ZendFramework template
# Composer files
composer.phar
vendor/

# Local configs
config/autoload/*.local.php

# Binary gettext files
*.mo

# Data
data/logs/
data/cache/
data/sessions/
data/tmp/
temp/

#Doctrine 2
data/DoctrineORMModule/Proxy/
data/DoctrineORMModule/cache/


# Legacy ZF1
demos/
extras/documentation

# Created by .ignore support plugin (hsz.mobi)
3 changes: 3 additions & 0 deletions Contributing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Bug fixes + security patches always welcomed.
- Especially looking for contributions to improve the default styling (and email templates) of the application.
- For new features, please open an issue to discuss first - I want to keep the core clean and most features can be implemented as plugins
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2017 conferencetools

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
25 changes: 25 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
MYSQL_PASS := $(shell pwgen 32 1)
THIS_FILE := $(lastword $(MAKEFILE_LIST))
.SILENT:

run:
echo "Mysql Pass:" $(MYSQL_PASS)
MYSQL_PASS="$(MYSQL_PASS)" docker-compose up -d
docker exec -t -i devskeleton_webapp_1 sh -c 'php /data/vendor/bin/doctrine-module orm:schema-tool:create'
docker exec -t -i devskeleton_webapp_1 sh -c 'php /data/vendor/bin/cli cqrs:rebuild-projection -a'
$(MAKE) -f $(THIS_FILE) port

stop:
MYSQL_PASS="$(MYSQL_PASS)" docker-compose stop

start:
MYSQL_PASS="$(MYSQL_PASS)" docker-compose start

clean:
MYSQL_PASS="$(MYSQL_PASS)" docker-compose rm

port:
echo -n "App running at http://localhost:"
docker port sponsorship_webapp_1 | cut -f2 -d:


11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
This is a skeleton application designed to help you get up and running quickly
when developing applications in the conference tools suite.

This does some bad things in order to make development easy and should
absolutely NOT be used in a production environment. If you decide to ignore
this warning and run in production anyway, be aware that a £1000 license fee
per server/container per day will be charged for running the code contained
in this repository in production.

As the conference tools project progresses, a skeleton application more
suited to production use will be released.
20 changes: 20 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "conferencetools/dev-skeleton",
"description": "Skeleton app for working with one or more of the conference tools modules",
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/conferencetools/sponsorship-module"
}
],
"require": {
"php": ">=7.0.5",
"conferencetools/sponsorship": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"platform": {
"php": "7.0.0"
}
}
Loading

0 comments on commit 785fb09

Please sign in to comment.