francisli / xrtour

GNU Affero General Public License v3.0
0 stars 0 forks source link

XR Tour

This repository contains the code for XR Tour, a platform and content management system for creating mobile web-based walking tours.

One-time Setup

  1. On Github, "Fork" this git repo to your own account so that you have your own copy.

    Read more about "forking" here:
    https://docs.github.com/en/free-pro-team@latest/github/getting-started-with-github/fork-a-repo

  2. Clone YOUR copy of the git repo to a "local" directory (on your computer), then change into the directory.

  3. Install Docker Desktop: https://www.docker.com/products/docker-desktop

    1. Windows users see notes below...
  4. Open a command-line shell, change into your repo directory, and execute these commands:

    docker compose pull
    docker compose up

    It will take a while the first time you run these commands to download the "images" to run the web application code in Docker "containers". When you see messages that look like this, the server is running:

    xrtour-server-1       | 4:01:54 PM client.1 |  You can now view xrtour-client in the browser.
    xrtour-server-1       | 4:01:54 PM client.1 |    Local:            http://localhost:3000
  5. Now you should be able to open the web app in your browser at: http://localhost:3000/

  6. Open a new tab or window of your shell, change into your repo directory as needed, and execute this command:

    docker compose exec server bash -l

    This will log you in to the running server container, as if you were connecting to a different machine over the Internet. Once you're logged in, you will be in a new shell for the container where you can run the following command:

    bin/create-admin Firstname Lastname email password

    Put in your name and email address and a password. This will create a first user in the database.

  7. To stop the server, press CONTROL-C in the window with the running server. If it is successful, you will see something like this:

    Killing xrtour_db_1           ... done
    Killing xrtour_server_1       ... done
    Killing xrtour_mailcatcher_1  ... done

    If it is not successful, you may see something like this:

    ERROR: Aborting.

    If you get an error, the server may still be running on your computer. To force it to stop, run the following command and wait for the output to report DONE:

    docker compose stop
    Stopping xrtour_db_1          ... done
    Stopping xrtour_server_1      ... done
    Stopping xrtour_mailcatcher_1 ... done
  8. That's it! After all this setup is complete, the only command you need to run to get started again is the docker compose up command.

Heroku Deployment Setup

  1. Sign up for a Heroku account at: https://signup.heroku.com/

    You will need to add a credit card to your account and enable a billing subscription for Eco dynos.

  2. Click on the Deploy button below:

    Deploy

    In the App Name field, enter a URL-friendly name that will become part of your final url. (i.e. https://your-app-name.herokuapp.com)

  3. Install the Heroku CLI (Command Line Interface) tool: https://devcenter.heroku.com/articles/heroku-cli

    On macOS you must first install Homebrew, if you don't already have it: https://brew.sh/

    When successfully installed, you can execute the command:

    heroku

    And you will see output like this:

    CLI to interact with Heroku
    
    VERSION
    heroku/7.47.6 darwin-x64 node-v12.16.2
    
    USAGE
    $ heroku [COMMAND]
  4. Link your repo directory to the Heroku deployed app:

    heroku git:remote -a [YOUR APP NAME FROM STEP 2HERE]
  5. Once linked, you can execute Heroku CLI commands. For example, to run the user creation script on the server:

    heroku run "cd server && bin/create-admin Firstname Lastname email password"

Render Deployment Setup

  1. Sign up for a Render account at: https://render.com/

    You will need to add a credit card number to your account, even if using free instances.

  2. In the Dashboard, go to Blueprints, and click on New Blueprint Instance.

  3. Connect your Github account and return to this page. Select your forked repository.

  4. Enter a name for your deployment, and optionally the branch you wish to deploy (if not main).

  5. Set values for REACT_APP_FEATURE_REGISTRATION (true/false to enable/disable user registration), REACT_APP_SITE_TITLE (the name you wish to appear in the browser title bar), and SMTP_ENABLED (true/false to enable/disable mail, recommend false to start until mail server is set up).

  6. Click on Apply and wait, this can take quite a few minutes. You can click on the web service server link to follow the deployment event and watch the logs if you like.

  7. Once completed, you can see the site at the provided generated URL.

  8. Go to the web service server Settings, and edit the Build Command. Remove the command to run seeders and to create a first admin user so it doesn't re-run on subsequent builds (if [ -d seeders ]; then ../node_modules/.bin/sequelize db:seed:all; fi; bin/create-admin Site Admin admin@test.com changeme123;). You can log in to the site with this email and temporary password (change it immediately after logging in!).

Shell Command Quick Reference

git Command Quick Reference

Docker Command Quick Reference

Windows Docker Notes

License

XR Tour
Copyright (C) 2023 CHSA

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.