If you are already using a Linux based operating system, please continue to the next steps!
Supporting the development of Spoke can be unnecessarily difficult in Windows, so we strongly recommend you use Windows Subsystem for Linux (WSL).
WSL allows users to run Linux virtual environments and applications within Windows. Further information can be found here.
- Download WLS in the CMD as Administrator
- WSL comes in two flavors, WSL1 and WSL2. This will install WSL2, and is needed to run the application correctly. Look into this document from Microsoft if you need to upgrade from WSL1.
- Installing WSL2 will default to Ubuntu, which is a flavor of Linux and is recommended.
wsl --install
-
Restart your PC.
-
Allow your computer to reboot, and Ubuntu will finish installation. Ubuntu will be an application on you PC that you can search for. Please run all future commands found in this document in Ubuntu.
- Ubuntu will ask you to make a username and password. Please use a password vault or other password manager to store these details. You do not want to lose these.
NOTE: In the event that WSL needs Virtualization enabled, please follow these steps to enable Virtualization in your bios.
- If you have not already, Fork this repo then clone your forked copy. Then future pull requests can be made from your repo to Spoke.
git clone <url of your forked repo>
- change your pwd (present working directory) to the spoke directory before installations
cd spoke
- You may use this opportunity to set the remote upstream to spoke's repo for future fetches.
git remote add upstream https://github.com/StateVoicesNational/Spoke.git
- you can check that this is configured correctly to push to the origin and fetch from spoke's repo.
git remote -v
Your origin and Upstream should appear configured correctly.
- this is a good time to take a look at Syncing a Fork for full understanding.
-
Install the Node version listed in
.nvmrc
. This can also be found here:.nvmrc. From the spoke directory:nvm install nvm use
- this assumes you have nvm (node version manager) installed. If not, either
- run
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
- or visit NVM, a great resource for installation if your terminal isn't recognizing nvm or if you'd like more background on these commands.
- at this time of this writing, nvm install will install a version above 17 but we want to run 12. Yarn will have to be installed again, even if you have yarn installed already, as it will need to be compatible with this version of nvm.
-
Install yarn.
npm install --global yarn
- Yarn is a package manager that will download all required packages to run Spoke.
-
Install the packages.
yarn install
-
Create a real environment file:
cp .env.example .env
- This creates a copy of
.env.example
, but renames it.env
so the system will use it. Make sure you use this new file.
We use environment variables to allow instance admins to customize their Spoke experience. If you end up doing dev work on an area that is configured through environment variables, it will be helpful to be familiar with the patterns used. Because of this, we recommend that you take a look at the environment variable reference to get a lay of the land.
We have 2 recommended ways to set up your database for your development environment and you can choose either based on your preference or comfort level. You can use sqlite (which is the default DB so you can proceed to the next section if you choose this) or postgres. At this time, all production Spoke instances use postgres.
If you're using postgres (see below), you should set DB_TYPE=pg
and if you're using sqlite, you don't need to change anything about your .env file.
Docker is optional, but can help with a consistent development environment using postgres. You can also (set up postgres without docker) but we recommend the docker route.
- Install docker and docker compose
- Docker allows you to run apps in containers and can be installed here with Docker's instructions
- Docker Compose is the tool used to create and run docker configurations. If you installed Docker on Mac, a good way to install Docker Compose is to use homebrew. Once you have homebrew set up, you can run
brew install docker-compose
. if you're using Linux or Windows you can install Docker Compose with these instructions
-
Make sure Docker is running on your machine and then build and run Spoke with
docker compose up -d
to run redis and postgres in the background- You can stop docker compose at any time with
docker compose down
, and data will persist next time you rundocker compose up
. - Note! -
docker-compose
should in theory work with ComposeV2 as Docker considers it an alias fordocker compose
. Read more about the migration of Compose
- You can stop docker compose at any time with
-
Run
./dev-tools/create-test-database
to populate the test database -
When done testing, clean up resources with
docker compose down
, ordocker compose down -v
to completely destroy your Postgres database & Redis datastore volumes.
At this point, you should be ready to start your app in development mode.
- Run
yarn dev
to create and populate the tables.- Wait until you see both "Node app is running ..." and "webpack: Compiled successfully." before attempting to connect. (make sure environment variable
JOBS_SAME_PROCESS=1
)
- Wait until you see both "Node app is running ..." and "webpack: Compiled successfully." before attempting to connect. (make sure environment variable
- Go to
http://localhost:3000
to load the app. (Note: the terminal will say it's running on port 8090 -- don't believe it :-) - As long as you leave
SUPPRESS_SELF_INVITE=
blank in your.env
you should be able to invite yourself from the homepage by signing up with your information. (Notice the URL address in your window has an invite page parameter for the next route)- If you DO set that variable, then spoke will be invite-only and you'll need to generate an invite. Run:
echo "INSERT INTO invite (hash,is_valid) VALUES ('E4502B28-301E-4E63-9A97-ACA14E8160C8', 1);" |sqlite3 mydb.sqlite # Note: When doing this with PostgreSQL, you would replace the `1` with `true`
- Then use the generated key to visit an invite link, e.g.: http://localhost:3000/invite/E4502B28-301E-4E63-9A97-ACA14E8160C8. This should redirect you to the login screen. Use the "Sign Up" option to create your account.
- If you DO set that variable, then spoke will be invite-only and you'll need to generate an invite. Run:
- You should then be prompted to create an organization. Create it.
- Once you've created your organization, we recommend setting the env var
SUPPRESS_SELF_INVITE=1
so you don't get prompted to create a new org every time you log in - See the Admin and Texter demos to learn about how Spoke works.
- See the development guidelines
- See How to Run Tests
For development, you can set DEFAULT_SERVICE=fakeservice
to skip using an SMS provider (Twilio or Nexmo) and insert the message directly into the database.
To simulate receiving a reply from a contact you can use the Send Replies utility: http://localhost:3000/admin/1/campaigns/1/send-replies
, updating the app and campaign IDs as necessary. You can also include "autorespond" in the script message text, and an automatic reply will be generated (just for fakeservice
!)
If you need to use Twilio in development but with live keys, click here for instructions. When using instructions, please remember that references to NGROK urls should change to your Heroku app url.
If you want to test sending and receiving text messages with a real SMS provider in your local development environment, use ngrok to allow the vendor to communicate with Spoke.
- Create an ngrok account and download ngrok.
- Start up your Spoke dev env.
- Open a new terminal and cd to where you downloaded ngrok.
- Run the following command:
./ngrok http 3000
. You will see an external-facing app URL. Set theBASE_URL
environment variable to that value. If you are using Auth0 for authentication, you will also need to log into Auth0 and update the Application URIs with the ngrok external-facing app URL.