Skip to content

Commit 7379333

Browse files
author
Kátia Nakamura
authored
Merge branch 'master' into katia/organizers
2 parents 076f3e8 + 615f1f4 commit 7379333

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

CONTRIBUTING.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
==========================================================================
2+
3+
Contributing to PyCon Balkan website
4+
==========================================================================
5+
6+
PyCon Balkan website is an open source project and welcomes contributions.
7+
8+
To start contributing, fork/clone the project, install all the requirements and create a file named
9+
`.env` in the project's root.
10+
11+
Inside of the `.env` file added:
12+
```
13+
SECRET_KEY={create_and_add_your_own_SECRET_KEY_here_with_no_spaces}
14+
DEBUG=True
15+
```

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# pyconbalkan [![Build Status](https://travis-ci.org/PythonBalkan/pyconbalkan.svg?branch=master)](https://travis-ci.org/PythonBalkan/pyconbalkan)
22

33
Website for PyCon Balkan
4+
5+
> Info about contributing: https://github.com/PythonBalkan/pyconbalkan/blob/master/CONTRIBUTING.md
6+
7+
> Public Trello Board: https://trello.com/b/J6NhX1GZ/pycon-balkan-2018

pyconbalkan/core/templates/home.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,15 @@
3131
<![endif]-->
3232
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,900"
3333
rel="stylesheet">
34+
<!-- Global site tag (gtag.js) - Google Analytics -->
35+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118269305-1"></script>
36+
<script>
37+
window.dataLayer = window.dataLayer || [];
38+
function gtag(){dataLayer.push(arguments);}
39+
gtag('js', new Date());
40+
41+
gtag('config', 'UA-118269305-1');
42+
</script>
3443
</head>
3544

3645
<body>

0 commit comments

Comments
 (0)