Skip to content

Commit 3269d29

Browse files
Merge branch 'development' of github.com:fossasia/open-event-server into fix_event_import
2 parents fcdb920 + bbd0f19 commit 3269d29

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+2383
-399
lines changed

.env.example

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
DATABASE_URL=postgresql://john:start@127.0.0.1:5432/oevent
1+
DATABASE_URL=postgresql://open_event_user:opev_pass@127.0.0.1:5432/oevent
22
INTEGRATE_SOCKETIO=false
3-
TEST_DATABASE_URL=postgresql://open_event_user:test@127.0.0.1:5432/opev_test
3+
TEST_DATABASE_URL=postgresql://open_event_user:opev_pass@127.0.0.1:5432/opev_test
44
APP_CONFIG=config.DevelopmentConfig
55
ENABLE_ELASTICSEARCH=true
66
ELASTICSEARCH_HOST=localhost:9200
7+
8+
POSTGRES_USER=open_event_user
9+
POSTGRES_PASSWORD=opev_pass
10+
POSTGRES_DB=open_event

Pipfile

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
pycparser = "==2.14"
8+
flask-script = "<2.1,>=2.0.5"
9+
requests-oauthlib = ">=0.7.0,<1"
10+
icalendar = "<4,>=3.11"
11+
requests = {version = ">=2.12.4,<3", extras = ["security"]}
12+
"psycopg2-binary" = "*"
13+
itsdangerous = "<0.30,>=0.24"
14+
humanize = ">=0.5.1,<0.6"
15+
celery = "<4,>=3.1.23"
16+
redis = ">=2.10.5,<3"
17+
amqp = ">=1.4.9,<2.0"
18+
gunicorn = "<20,>=19.6.0"
19+
boto = ">=2.45.0,<3"
20+
"geoip2" = ">=2.4.2,<3"
21+
arrow = ">=0.10.0,<1"
22+
unicode-slugify = ">=0.1.3,<1"
23+
bleach = ">=2.1.3"
24+
stripe = "<2,>=1.44.0"
25+
"xhtml2pdf" = "*"
26+
forex-python = "<1,>=0.3.1"
27+
"oauth2" = "<2,>=1.9.0.post1"
28+
qrcode = "<6,>=5.3"
29+
python-magic = "<1,>=0.4.12"
30+
python-geoip = "<2,>=1.2"
31+
"marrow.mailer" = "<5,>=4.0.2"
32+
python-pentabarf-xml = "==0.19"
33+
"python-geoip-geolite2" = "*"
34+
pycountry = "*"
35+
pytz = "*"
36+
diff-match-patch = "*"
37+
blinker = "*"
38+
envparse = "*"
39+
flask-admin = "*"
40+
google-compute-engine = "*"
41+
raven = {version = "*", extras = ["flask"]}
42+
healthcheck = "*"
43+
elasticsearch-dsl = "*"
44+
paypalrestsdk = "*"
45+
eventlet = "*"
46+
Flask = ">=1.0,<1.1"
47+
Flask-SQLAlchemy = ">=2.1,<2.2"
48+
Flask-Migrate = ">=2.0.0,<3"
49+
Flask-Login = "<1,>=0.4"
50+
Flask-Scrypt = ">=0.1.3.6,<0.2"
51+
Flask-JWT = ">=0.3.2,<0.4"
52+
SQLAlchemy-Utils = ">=0.32.12,<0.33"
53+
APScheduler = ">=3.3.0,<4"
54+
Pillow = "*"
55+
SQLAlchemy-Continuum = "<2,>=1.2.4"
56+
Flask-Caching = ">=1.4.0,<1.5"
57+
Flask-Cors = ">=3.0.2,<3.1"
58+
Flask-REST-JSONAPI = {editable = true, ref = "shubhamp-master", git = "https://github.com/fossasia/flask-rest-jsonapi.git"}
59+
WTForms = "*"
60+
factory_boy = "*"
61+
Flask-Redis = "*"
62+
SQLAlchemy = "==1.1.15"
63+
Flask-Elasticsearch = "*"
64+
65+
[dev-packages]
66+
nose = "*"
67+
pylint = "*"
68+
"pep8" = "*"
69+
coverage = "*"
70+
dredd-hooks = "*"
71+
72+
[requires]
73+
python_version = "3.6"

0 commit comments

Comments
 (0)