Skip to content
This repository was archived by the owner on Oct 9, 2020. It is now read-only.

Commit 0c57618

Browse files
committed
Updated all documentation to match app generator v2
1 parent 0826ed0 commit 0c57618

21 files changed

+390
-653
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/build
55
/captures
66
**/.idea/**
7-
**/*.iml
87
temp
98
.pyc
10-
*.pyc
9+
*.pyc
10+
android-sdk.zip

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Please find info about the set up of the Android app in your development environ
7979
- Android SDK
8080
- Redis
8181

82-
Setup and installation instructions can be obtained [here](https://github.com/niranjan94/open-event-android/tree/development/apk-generator/v2).
82+
Setup and installation instructions can be obtained [here](https://github.com/niranjan94/open-event-android/tree/development/docs/installation).
8383

8484
## Contributions, Bug Reports, Feature Requests
8585

docker-compose.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: '2'
2+
3+
services:
4+
redis:
5+
image: 'redis:3-alpine'
6+
command: redis-server
7+
volumes:
8+
- 'redis:/var/lib/redis/data'
9+
ports:
10+
- '6379:6379'
11+
web:
12+
build: ./kubernetes/images/generator/
13+
command: ["/bin/sh","-c","./kubernetes/run.sh"]
14+
environment:
15+
REDIS_SERVICE_HOST: redis
16+
REDIS_SERVICE_PORT: 6379
17+
C_FORCE_ROOT: "true"
18+
SERVER_NAME: $SERVER_NAME
19+
links:
20+
- redis:redis
21+
ports:
22+
- '80:8080'
23+
volumes:
24+
redis:

docs/CONFIGURATION.md

-23
This file was deleted.

docs/INSTALLATION.md

-87
This file was deleted.

docs/INSTALLATION_AWS.md

-87
This file was deleted.

0 commit comments

Comments
 (0)