We are Bogazici University Computer Engineering students. This repository mainly contains our group work in CMPE-352 and CMPE-451.
Our project, COLUMBUS, is a location stories platform where users can share stories about locations and interact with each other on these stories. To achieve this, we organize periodic meetings to assign weekly tasks to team members and finish them as a group. You can see our wiki page for further information.
CMPE-352 or "Fundamentals of Software Engineering" is a course that teach us about the issues, practices, and tools associated with developing software as a team.
CMPE-451 focuses on the successful application of the practices for managing the lifecycle of the development of a software product. It is about applying the fundamental principles gained during Cmpe352.
The URI of the practice app could be found here: http://ec2-35-158-103-6.eu-central-1.compute.amazonaws.com/
The APIs could be found here: http://ec2-35-158-103-6.eu-central-1.compute.amazonaws.com:5000
You can get to know our team members, see the details of our meetings, learn our communication methods and read our important reports in this repository.
- Abdulkadir Elmacı
- Yağız Efe Şabanoğlu
- Erencan Uysal
- Hamza Akyıldız
- İsmail Ata İnan(Communicator)
- Merve Rabia Barın
- Onur Can Avcı
- Ramazan Bulut
- Umut Kocasarı
To build the application, please follow the below steps:
- Make sure that Docker is installed in the computer. If not please follow the instructions on their website.
- Go to the directory Columbus in the source code of the repository
- Go to the Frontend directory
- Change the
REACT_APP_API_URLin the.envfile to where the backend will be deployed with port 8000. - For linux, run the command in the Columbus directory echo
"MAIL=Columbus_451_columbus\nDEBUG=True\n" > backend/src/.envto set the run environment for the backend. - Run the following command to build the images for backend and frontend. If you have not enabled the using docker without sudo add the sudo prefix for each command:
- For Linux:
docker-compose build - For other OSs:
docker compose build - If you want to build the specific image specify the service name in the docker-compose file:
- For backend:
docker-compose build backend - For frontend:
docker-compose build frontend
- For backend:
- For Linux:
- The backend and frontend images should start the build
Run the built images by running the following commands, you can also use -d command to start the containers at detach state:
- For linux:
docker-compose up - For otherOSs:
docker compose up - For only one of the services use the following commands:
- For backend:
docker-compose up backend - For frontend:
docker-compose up frontend
- For backend:
cat your_dump.sql | docker exec -i postgresql psql -U postgres
You can access the frontend with HTTP at the deployed URL and the backend at 8000 port at the deployed URL
-
Android Studio
- You can download Android Studio via https://developer.android.com/studio
-
Android SDK
- minSdkVersion = 21
- compileSdkVersion = 30
- targetSdkVersion = 30
-
You can use Android Studio to install SDK by selecting checkboxes while installing it. After that you should set environment variables:
- Get Android SDK directory on SDK Manager of Android Studio
- "Preferences" dialog, under
Appearance & Behavior→System Settings→Android SDK. - Configure the
ANDROID_HOMEenvironment variable as directory of SDK or c. - You can also create a “local.properties” file in the directory: “Columbus/mobile/Columbus/android/”. Then place code below:
sdk.dir=export ANDROID_HOME= path to ANDROID_SDK_HOME - If you want to use emulator you should add another environment variable:
%LOCALAPPDATA%\Android\Sdk\platform-tools
- "Preferences" dialog, under
- Get Android SDK directory on SDK Manager of Android Studio
- You can install it via Chocolatey (package manager system) by running following command:
choco install nodejsas Administrator Command Prompt.
brew install node
brew install watchman via Homebrew package manager system
-
Java Development Kit
- 1.8
-
npm (Node package manager) or Yarn
- 8.1.0 (npm)
- 1.22.17 (yarn)
-
react-native-cli
- yarn add react-native-cli or
- npm i react-native-cli
You can look at these web page for any trouble:
To RUN:
yarn or npm installin directory:Columbus/mobile/Columbusreact-native run-androidoryarn android
Also You can find APK here: https://github.com/bounswe/2021SpringGroup7/blob/CM-37/Columbus/mobile/app-release.apk You can directly install it to your Mobile Phone or Emulator.