Skip to content

Space recommendation system and augmenting informations with ARCore SDK

License

Notifications You must be signed in to change notification settings

PNU-Sinbaram/MapGo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MapGo

PNU Symbol

License Issues Stars Forks Client github action Server github action Codacy Badge Hackathon badge

Client Build Guide

Before build client app, you need to create apikey.properties file in client directory. After that, you need to fill it with your own secret key pairs.

Here is quick commands for key file generation

echo -e "SERVER_ADDRESS=${SERVER_ADDRESS}\nNAVER_KEY_ID=${NAVER_API_ID}\nNAVER_SECRET_KEY=${NAVER_API_SECRET}\nNAVER_OPEN_KEY_ID=${NAVER_OPEN_KEY_ID}\nNAVER_OPEN_SECRET_KEY=${NAVER_OPEN_SECRET_KEY}" >> ./client/apikey.properties

After generate key file, you can build MapGo application using below commands

cd client
bash ./gradlew assembleDebug --stacktrace

Server Build Guide

You have two options for distributing mapgo server to your environment. You have to use your own api key in both environment.

Docker

docker pull snowapril/mapgo_server
docker run -e DJANGO_SECRET_KEY=${RANDOM_SECRET_KEY} GOOGLE_PLACES_KEY=${GOOGLE_PLACES_KEY} -p 8000:8000 snowapril/mapgo_server

On your local

cd server
pip install --upgrade pip==21.2.4
pip install -r requirements.txt
export DJANGO_SECRET_KEY=${RANDOM_KEY}
export GOOGLE_PLACES_KEY=${GOOGLE_PLACES_API_KEY}
python3 manage.py makemigrations && python3 manage.py migrate && 	python3 manage.py runserver 0:8000

Documents

image

https://snowapril.notion.site/SW-eeb1ec6eb0194c40b3b8c2a9445933bd

Figma

image

License

The class is licensed under the MIT License:

Copyright (c) 2021 Sinbaram Team

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.