Skip to content

dev-mission/fellowship2022-signup

Repository files navigation

SignMe | Dev/Mission SignIn

Team Members: Drew Hollenberg Weipeng(William) Wang Kimon Monokandilos Fatimah Inayah Abdolcader

This repository contains a "starter" project for web application development in JavaScript. This includes the following components, from front-end to back-end:

  • React 18.2.0
  • React Router 6.8.0
  • Bootstrap 5.2.3
  • Node.js 18.13.0
  • Express 4.18.2
  • Sequelize 6.28.0
  • Postgres 14

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.

    git clone https://github.com/YOUR_ACCOUNT_ID/fellowship2022-signup.git
    cd fellowship2022-signup
    
  3. Install Docker Desktop: https://www.docker.com/products/docker-desktop

    1. If you have Windows Home Edition, you will need to install Docker Toolbox instead. See the troubleshooting 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:

    server_1       | 4:13:08 AM webpack.1 |  You can now view fellowship2022-signup in the browser.
    server_1       | 4:13:08 AM webpack.1 |    Local:            http://localhost:3000
    
  5. Now you should be able to open the web app in your browser at: http://localhost:3000/

    1. If you had to install Docker Toolbox, then replace "localhost" with the IP address of the Docker Virtual Machine.
  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 fellowship2022-signup_db_1           ... done
    Killing fellowship2022-signup_server_1       ... done
    Killing fellowship2022-signup_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 fellowship2022-signup_db_1          ... done
    Stopping fellowship2022-signup_server_1      ... done
    Stopping fellowship2022-signup_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 create a first admin user (bin/create-admin Site Admin [email protected] changeme123;). You can log in to the site with this email and temporary password (change it immediately after logging in!).

Shell Command Quick Reference

  • Every directory and file on your computer has a path that describes its location in storage. Special path symbols include:

    • The current working directory you are in: .
    • The parent of the current working directory: ..
    • Your home directory: ~
    • The root directory: / (Mac, Linux) or \ (Windows)
      • The same symbol is used as a separator when specifying multiple directories in a path
      • If the path starts with the separator, it means the path starts at the root
        • For example: /Users/myusername/Documents
        • This is called an absolute path
      • If the path does not start with the separator, it means the path starts at the current working directory
        • For example, if the current working directory is: /Users
          then the same path as the previous example is: myusername/Documents
        • This is called a relative path
      • A path can also start with any of the above special path symbols
        • For example, on Mac the same path as the previous example is: ~/Documents
  • To print the working directory (i.e. to see the full path of the directory you are currently in):

    pwd
    
  • To list the files in the working directory:

    ls -l
    
  • To change the working directory:

    cd path
    
  • To make a new directory inside the working directory:

    mkdir newpath
    
  • To create a new empty file inside the working directory:

    touch filename.ext
    

git Command Quick Reference

  • To check the status of the files in your local repo (i.e. what's been added or changed):

    git status
    
  • To add all the changed files to the next commit:

    git add .
    

    To add specific file(s) to the next commit:

    git add path/to/file1.ext path/to/file2.ext path/with/wildcard/*
    
  • To commit the added files with a message:

    git commit -m "My description of what's changed"
    
  • To push the commit to the remote repo:

    git push
    
  • To pull any new commits from the remote repo:

    git pull
    

Docker Command Quick Reference

  • To start all the containers:

    docker compose up
    
  • To log in to the running server container:

    docker compose exec server bash -l
    
  • To stop all the containers, in case things didn't shutdown properly with CTRL-C:

    docker compose stop
    
  • To run the server container without starting everything using the up command:

    docker compose run --rm server bash -l
    
  • To re-build the server container:

    docker compose build server
    

Docker Troubleshooting

  • On some PC laptops, a hardware CPU feature called virtualization is disabled by default, which is required by Docker. To enable it, reboot your computer into its BIOS interface (typically by pressing a key like DELETE or F1 during the boot process), and look for an option to enable it. It may be called something like Intel Virtualization Technology, Intel VT, AMD-V, or some similar variation.

  • On Windows, Docker Desktop cannot run on Windows Home edition. Install Docker Toolbox instead:

    https://docs.docker.com/toolbox/overview/

    https://github.com/docker/toolbox/releases

    Use the Docker QuickStart shell installed with Docker Toolbox to open a command-line shell that launches Docker for you when it starts. On Windows, right-click on the shotcut and Run as Administrator. Note: this can take a long time to start, depending upon your computer, as it needs to start a virtual machine running Linux.

    The virtual machine will have its own, separate IP address on your computer. To view this IP address, run this command in the command-line shell:

    docker-machine ip
    

License

SignMe
Copyright (C) 2022 <Dev/Mission>

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/.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published