Skip to content

Commit 8375f91

Browse files
committed
Initial commit
0 parents  commit 8375f91

File tree

3 files changed

+71
-0
lines changed

3 files changed

+71
-0
lines changed

.gitignore

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Cache and logs (Symfony2)
2+
/app/cache/*
3+
/app/logs/*
4+
!app/cache/.gitkeep
5+
!app/logs/.gitkeep
6+
7+
# Email spool folder
8+
/app/spool/*
9+
10+
# Cache, session files and logs (Symfony3)
11+
/var/cache/*
12+
/var/logs/*
13+
/var/sessions/*
14+
!var/cache/.gitkeep
15+
!var/logs/.gitkeep
16+
!var/sessions/.gitkeep
17+
18+
# Parameters
19+
/app/config/parameters.yml
20+
/app/config/parameters.ini
21+
22+
# Managed by Composer
23+
/app/bootstrap.php.cache
24+
/var/bootstrap.php.cache
25+
/bin/*
26+
!bin/console
27+
!bin/symfony_requirements
28+
/vendor/
29+
30+
# Assets and user uploads
31+
/web/bundles/
32+
/web/uploads/
33+
34+
# Assets managed by Bower
35+
/web/assets/vendor/
36+
37+
# PHPUnit
38+
/app/phpunit.xml
39+
/phpunit.xml
40+
41+
# Build data
42+
/build/
43+
44+
# Composer PHAR
45+
/composer.phar
46+
47+
# Backup entities generated with doctrine:generate:entities command
48+
*/Entity/*~

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2016 SaturdayCodersAmsterdam
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# SaturdayCodersAmsterdam.github.io
2+
Saturday Study Groups

0 commit comments

Comments
 (0)