Skip to content

πŸ§ͺ Set up for new organization ​

Labs and organizations which are looking to start using 🫠 Smile will have to configure a small set of services (Github, Firebase, Slack, and a web server) to communicate with one another. This configuration only needs to be done one time for a new organization, and then multiple users in a group will be able to share these resources. If you are using Smile for the first time as a solo user, you will need to configure these services for yourself before you develop your first experiment.

First time user of an existing lab?

You're in luck! If your lab already has a base repo in place, please skip this guide and jump straight to adding a new user to be added to your organization. If you would like to learn more about how to set up your own configuration for smile, keep reading.

Overview ​

Smile glues together several affordable or free web services in order to make developing and launching experiments relatively painless.

  • Github (required).
    The project relies heavily on Github for managing code and projects. Github not only organizes versions of your code using git but also allows you to run scripts each time you make a change to the code that can upload the latest version of your project to the web.

  • Google Firebase/Firestore (required).
    Smile stores the data from your experiments in a Google Firestore database. Firestore is a robust schema-less database solution ideally suited for the web. The cost is low for even fairly large experiments and datasets (although there are some technical limits, see here for more info).

  • Slack (weakly required).
    In order to notify you and your other lab members when certain tasks are complete or if there are errors, Smile uses a slack bot. You need to have a Slack account and get API keys to enable this. If you don't want to use Slack it is possible to modify the scripts to provide notifications another way (e.g., email) but currently, that is not implemented.

    Slack alternatives

    One very simple option is to modify the scripts to send you an email when your task is deployed. Another option is ntfy.sh which can send notifications to your phone or computer (using browser notifications) when a script completes (see StackOverview for a discussion).

  • A SSL signed HTTP/web server (required).
    Finally, you need to provide a web hosting site to host your experiments. The requirements of this website are quite simple, you just need a regular static HTTP server with a secure signed certification (SSL). Many web hosting services provide this type of account, as well as many universities. If you are looking for recommendations, gureckislab uses Dreamhost.com which costs as little as $3/month for a single SSL hosted website. This would cover all possible experiments you would want to run so the cost would never be much more than that.

The general overview of how these services interact is shown below:

Overview of services

You push code to Github. Each time this happens, your code is deployed to your web (i.e., http) server. In addition, a message is posted to Slack to let you know that deployment was successful (or to let you know that there were errors preventing deployment). Participants access your task via their web browser, which is able to write to the Google Firebase database.

The following sections walk you through configuring each of these services. This takes a few steps, but it is a one-time set up. Afterwards, multiple members of a lab can deploy multiple projects using the same infrastructure, without worrying about the details of this underlying configuration.

Setup Github ​

The following steps walk you through setting up Github to use with Smile and introduce some basic concepts.

Create accounts ​

Github acts as a hub for most things in Smile. Each person in your lab needs to have a Github account (these are free). In addition, it makes sense for your lab to create a Github organization (also known as team). Github organizations are meta-accounts that multiple individuals can belong to, granting them access to multiple private and public repositories.

  • First create a new organization, using the docs provided by Github here.
  • Next, optionally, you can use the Github Education for Teachers program to request a free "Team" level upgrade to your organization allowing you to use several useful and required Github services for free including Github Actions. This might be preferred if you anticipate heavy useage of your organization's github page. However, even the free level (called Github Free) works!
  • Finally you can locate the organization in Github and invite the members of your lab to be members of the organization.

Set up a "base" Smile repo for your organization/lab ​

Next you want to create a fork of the main Smile Github repo for use in your organization. A fork is a copy of all the code in a repository that can be then developed and changed independently of the parent. However, you maintain a connection to the original repository so you can pull down and synchronize changes from the child and parent repositories when you want. This new forked repo will be your lab's "base" repo. All your individual projects will then fork from your lab's "base" repo. This allows you to share the lab/organization-specific configuration files with all the repos that fork from your base repo.

Inheriting between Github repos

In the figure above, each node is a Github repository. Each lab (Hartley Lab, Lake Lab, Mattar Lab) forks from the base Smile repo. Then, student projects for that lab fork from the lab's base and inherit the lab-specific configuration files.

To create this base repo, navigate to the main 🫠 Smile repo here. A screenshot of this page should look like this:

Forking the base repo

Be sure to make the owner of the account your organization rather than your personal Github account. The name can be anything, but smile works. The description is up to you. It's fine to copy only the main branch.

This will create a new repository that will look like this (assuming your organization was hartleylabnyu):

Github overview

Next, you should clone a local copy of this repo to your computer with the link found under the "Use this template" tab shown below:

Cloned repo

Github commandline

After successfully cloning your repository to your local system, you will have a fresh copy of the Smile project files in a folder on your computer. This repository/folder will now serve as a template for each new project/experiment.

Setup Firebase ​

Data storage and recording is provided using Firebase cloud services (specifically Firestore, which is a database service provided under the general Firebase sytem). You need to create a Firebase account and a Firestore project.

First, go to https://console.firebase.google.com and create an account. After your account is created, you are presented with a page that looks like this:

Firebase create project

Click create project and then choose a project name (can by anything, e.g., your lab/org name): Firebase new project

Enabling analytics is optional. While this may give you some statistical insight into who is using your experiments, this choice will not affect your experiment.

Firebase enable analytics

Next, go to the project page in the Firebase console and click add web app (the icon that looks like <\>): Firebase project overview

Register the new web app giving it a nickname (something like smile-db might make sense, but up to you).
You do not need to also set up Firebase Hosting.

Firebase add sdk

Next, add the Firebase SDK (select use npm). Make sure to copy the Firebase configuration keys, which are shown as a chunk of javascript code lower on the page (highlight below). Save the keys someplace safe, as you will need these later:

Firebase get credentials

Setup Firebase rules ​

You need to setup the rules for your Firebase database. These rules are used to define the structure of the database and the permissions for accessing it. The firebase.rules file in the root of your project has an example of the rules which work well for most Smile Experiments. These rules allow participants to write data to the database and read their own data, but not the data of other participants. In addition, private data (personally identifiable information) is more heavily protected and is write only. You can upload these rules to your Firestore database in the Firebase console. Read more about Firebase rules in the Firebase rules documentation.

Setup Slack ​

When you're developing an experiment and push changed to Github, your experiment code goes through a pre-processing step, which optimizes the speed at which the code is delievered to participants. Also, when your code builds successfully it is deployed to a unique URL (see deploy docs for full details). If things go wrong in this process, it is helpful to get a notification.

If you don't want to use Slack, skip these instructions and go to the next section.

First, from the side bar in Slack choose your organization name and select "Tools" from the dropdown menu, when "Workflow Builder". You'll get a screen that looks like this:

Slack config

Select the green "Create" button in the top right of the screen and choose a name for your workflow "smile deployment notifications" is fine: Slack config

Next select "Webhook" as the type of workflow you are creating.

Slack config

Click add variables and add the following three variables names to your workflow (github_username, deploy_url, and github_hash):

Slack config

Next, select the option to "Send a message" and select an appropriate channel (#smile_deploy is a nice way to segregate these messages out for your lab). Configure the message template to look something like this (you can use emojis for fun):

Slack config

Click save and you'll see your settings like this: Slack config

You can make some changes here including making a custom icon for your bot, etc... When you are happy with it, click publish and it will show you the URL for using this workflow:

Slack config

Be sure to copy the url down for later.

Next you need to repeat the process to create a separate workflow for errors. Start over from the start of this section, creating a new workflow. The name can be "smile deployment error", webhook is the type, the variables need to be github_username and message. The message you send should look like this:

Slack config

Once again you can customize the icon and then click "Publish", copying down the URL for later.

Setup a SSL signed HTTP/web server ​

Smile requires you to host your HTML files on a webserver with a SSL signed certificate (so that it loads using the https:// prefix in a browser). Many universities provide these (sometimes called web hosting accounts), and they are available cheaply from many internet service providers. We use Dreamhost which is a very long-standing internet hosting provider. Their basic shared hosting plan can host all of a lab's experiments for about $2/month: Dreamhost shared hosting plans.

The main requirement is that you can SSH to the server and upload files that way.

Configure your base repo ​

Once you have all these services set up you need to configure your new base lab repo for use with your services. The configuration files for your lab's base Smile install will be located in the env/ folder. In the initially cloned version (see above) your listing in that folder will look like this:

.env
.env.deploy.local.secret
.env.docs.local.secret
.env.local.secret

You are going to first delete the files ending in .secret. You will regenerate those secret files in a later step.

Next, you need to create a file called .env.local in the env/ folder. The content of that file should look like this:

# this file is not tracked by github and contains
# semi-sensitive information
# note these variables are complied in the final javascript
# source so don't add very high security stuff to them
#

# enter firebase database credentials
VITE_FIREBASE_APIKEY             = xxxx
VITE_FIREBASE_AUTHDOMAIN         = xxxx
VITE_FIREBASE_PROJECTID          = xxxx
VITE_FIREBASE_STORAGEBUCKET      = xxxx
VITE_FIREBASE_MESSAGINGSENDERID  = xxxx
VITE_FIREBASE_APPID              = xxxx

# enter google analytics id
VITE_GOOGLE_ANALYTICS            = xxxx

You will want to replace the values for the entires that contain the word FIREBASE with the corresponding values you obtained above when setting up your Firebase (you should have copied them down, but it is possible to look them up again on your Firebase project page). The VITE_GOOGLE_ANALYTICS field can be empty or you can add a Google analytics ID. The VITE_BUG_REPORTS is an unimplemented feature currently and can be ignored.

Next, you need to create a file called .env.deploy.local in the env/ folder. The content of that file should look like this:

# this file is not tracked by github and contains
# sensitive information inluding write access to our experiment
# hosting web server!

# enter experiment hosting web server information here
EXP_DEPLOY_HOST        = "xxx"
EXP_DEPLOY_PATH        = "/home/user/exps"
EXP_DEPLOY_PORT        = 22
EXP_DEPLOY_USER        = xxx
SLACK_WEBHOOK_URL      = https://hooks.slack.com/workflows/xxx
SLACK_WEBHOOK_ERROR_URL= https://hooks.slack.com/workflows/xxx
EXP_DEPLOY_KEY         = "-----BEGIN RSA PRIVATE KEY-----\nxxx\n-----END RSA PRIVATE KEY-----"

The EXP_DEPLOY_HOST is the domain name of the http hosting service you set up above. For example www.psych.nyu.edu. The EXP_DEPLOY_PATH is the path to the folder on that server where you will upload your web files. The EXP_DEPLOY_PORT should be 22 for ssh access unless something very special is configured on your hosting service. The EXP_DEPLOY_USER should be the username of the account you use to access your http hosting service. The SLACK_WEBHOOK_URL is the URL you received when setting up your first slack workflow above (for successful deployments). The SLACK_WEBHOOK_ERROR_URL is the URL you received when setting up your second Slack workflow above (for errors). Finally, EXP_DEPLOY_KEY should be the private SSH key you use to access your HTTP server using passwordless ssh. Instructions on creating that key are provided here for dreamhost. The key needs to be all on one line with \n characters when there are new lines and should include the part that says BEGIN RSA PRIVATE KEY as is visible above. It will be very long.

You can safely ignore the .env.docs.local file since the main docs are hosted by the main NYUCCL repo.

By default all of the env/.env.*.local files are ignored by github (using the .gitignore file). This is because they have sensitive information. However you need to distribute those files out to people working in your lab. To do that, we will encrypt the files and store the encrypted files in your github account. This works even for public github repositories ensuring that your content is not visible to others.

Encrypt your configuration files ​

The final step of setting up your lab's base Smile repo is to encrypt your environment files. To do this you will use the well documented git-secret package (here). First install git-secret package using Homebrew:

Firebase project overview

Next, remove the .gitsecret folder in your base repo:

rm -rf .gitsecret

Next run:

git secret init

to reinitialize your gitsecret setup.

Next, create a gpg RSA key pair (see here for more info) for yourself (e.g., lab manager/pi) using the command:

gpg --full-generate-key

In the prompts, just choose the default options and make sure to remember the passphrase you use. You also will want to set the expiration of the key to 0 (never expire) when prompted.

Next, add the first user to your repo:

git secret tell you@email.com

(replacing you@email.com with your email address)

Next, add the files:

git secret add env/.env.deploy.local
git secret add env/.env.local

Finally, encrypt the files

git secret hide

Now commit everything that has changed to your github repo.

Making changes to the env files for your project ​

You may update the env files for the entire lab at any point. Just make sure to re-encrypt the files and re-upload them to github using the following commands.

git secret hide
npm run upload_config

Configure your git secrets on Github ​

To configure the Github repo correctly:

gh auth login

if you haven't already

Then, upload the configuration settings

npm run upload_config

All done! ​

Now, your organization-specific base 🫠 Smile template is all set! You can go ahead with Adding a new user if you have other lab members, or skip to Starting a new project if you're ready to get started on a Smile experiment!

Released under the MIT License.