Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/giu7d/ar-manual-server
https://github.com/giu7d/ar-manual-server
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/giu7d/ar-manual-server
- Owner: giu7d
- License: mit
- Created: 2020-09-18T18:53:22.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-01T21:29:45.000Z (almost 4 years ago)
- Last Synced: 2023-03-06T21:00:17.777Z (almost 2 years ago)
- Language: TypeScript
- Size: 570 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
```
▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄ ▄▄ ▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄
█ █ █ ▄ █ █ █ █ █ █ ▄ █
█ ▄▄▄▄▄█ ▄▄▄█ █ █ █ █ █▄█ █ ▄▄▄█ █ █ █
█ █▄▄▄▄▄█ █▄▄▄█ █▄▄█▄█ █ █▄▄▄█ █▄▄█▄
█▄▄▄▄▄ █ ▄▄▄█ ▄▄ █ █ ▄▄▄█ ▄▄ █
▄▄▄▄▄█ █ █▄▄▄█ █ █ ██ ██ █▄▄▄█ █ █ █
█▄▄▄▄▄▄▄█▄▄▄▄▄▄▄█▄▄▄█ █▄█ █▄▄▄█ █▄▄▄▄▄▄▄█▄▄▄█ █▄█
```# SERVER - MSc.
Server module for Agmented Reality Manual Application.
Part of my MSc. project
## Installing
We are using docker to manage our project dependencies, so first you will need to install [docker](https://www.docker.com/products/docker) and [docker compose](https://docs.docker.com/compose/install).
```bash
#Clone this repository:
git clone server# Open the project folder:
cd server# Copy the sample ENV to a local `.env`:
cp .env.sample .env# And finally, build the project using docker-compose:
docker-compose build
```## Running
To run the application in **development** is simple as this
```bash
docker-compose up
```### Production
To run the application in **production** use
```bash
docker-compose -f ./docker-compose.prod.yml up
```