-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 785fb09
Showing
12 changed files
with
3,989 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
Oops, something went wrong.