This repository is the content for https://developer.nexmo.com, which includes the Vonage documentation, API reference, SDKs, Tools & Community content. To get a Vonage account, sign up for free at nexmo.com.
We write the docs in US English and enforce this at build time with a CI check. You can run the check locally using the following command:
yarn spellcheck
Or if you're using Docker:
docker-compose exec web yarn spellcheck db:migrate
If there is a word that isn't in the dictionary but is correct to use, add it to the .spelling
file (there's a lot of exceptions in there, including Vonage
!)
We check our content for any offensive, ableist or gendered language and enforce this at build time with a CI check. You can run the check locally using the following command:
./node_modules/.bin/alex _documentation/en _partials _modals _tutorials
Or if you're using Docker:
docker-compose exec web ./node_modules/.bin/alex _documentation/en _partials _modals _tutorials
The project can be run on your laptop, either directly or using Docker. These instructions have been tested for Mac.
-
Install Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
-
Install required packages, create database and configure
git
.Note: A default database is created for you when you run the
db:setup
script. If you'd like to create and use a different database or user, usecreatedb database_name_here
orcreateuser username_here
and make sure your.env
file is updated accordingly (See .env.example).brew install postgres rbenv git nvm redis brew services start postgresql brew services start redis git config --global user.name "NAME" git config --global user.email "[email protected]"
-
Generate an SSH key for authentication
ssh-keygen -t rsa cat .ssh/id_rsa.pub # Add to GitHub
-
Clone ADP to your local machine:
git clone [email protected]:Nexmo/nexmo-developer.git cd nexmo-developer
-
Copy the contents of the example file:
cp .env.example .env
and check if it worked by runningcat .env
(it should produce an output) -
Open the file:
code .env
, find the redis line (probably line 35) and comment it out -
Install the correct versions of ruby, as well as dependencies:
rbenv install 2.7.2 rbenv global 2.7.2 gem install bundle bundle install
- If you're getting error
rbenv: commend not found
runbrew update && brew update ruby-build
. - If you're getting
ruby-build definition not found 2.7.2
, you need to update the xcode:xcode-select --install
- NOTE: If you use
rvm
:rvm --default use 2.7.2 && gem install bundle && bundle install
- If you're getting error
-
Set up access to submodules:
git submodule init && git submodule update
and thengit config --global submodule.recurse true
-
Start postgres:
brew services start postgresql
and if that doesn't workbrew services restart postgresql
.- If you're getting "PG::ConnectionBad - could not connect to server: Connection refused", you can try installing the correct version or re-install postgres:
brew uninstall postgresql && rm -rf /usr/local/bin/postgres && rm -rf .psql_history .psqlrc .psql.local .pgpass .psqlrc.local && brew update && brew install postgres
- If you're getting "PG::ConnectionBad - could not connect to server: Connection refused", you can try installing the correct version or re-install postgres:
-
Start the local server:
OAS_PATH=“pwd/_open_api/api_specs/definitions” bundle exec nexmo-developer --docs=`pwd` --rake-ci`
You should now be able to see the site on https://localhost:3000/
If you don't want to install Ruby & PostgreSQL then you can use docker to sandbox the Vonage API Developer Portal into its own containers. After you Install Docker run the following:
$ git clone [email protected]:Nexmo/nexmo-developer.git
$ cd nexmo-developer
$ docker-compose up
Once docker-compose up
has stopped returning output, open a new terminal and run docker-compose run web bundle exec rake db:migrate
.
At this point, open your browser to https://localhost:3000/ and you should see the homepage. The first time you click on Documentation
it might take 5 seconds or so, but any further page loads will be almost instantaneous.
To stop the server press ctrl+c
.
If you get an error that says "We're sorry, but something went wrong." you might need to run the database migrations with
docker-compose run web bundle exec rake db:migrate
You can access the admin dashboard by visiting /admin
. Initially, you will have an admin user with the username of [email protected]
and password of development
.
The following is an example if you are running the Vonage API Developer Portal within a Docker container:
docker exec -it <container_id> rake db:seed
New admin users can be created by visiting /admin/users
.
Some of the contents of ADP are brought in via git submodules, such as the OpenAPI Specification (OAS) documents. A submodule is a separate repository used within the main repository (in this case ADP) as a dependency. The main repository holds information about the location of the remote repository and which commit to reference. So to make a change within a submodule, you need to commit to the submodule and the main repository and crucially remember to push both sets of changes to GitHub.
Here are some tips for working with submodules:
git submodule init
git submodule update
git pull
git submodule update
Make sure you are inside the directory that is a submodule.
- make your changes
- commit your changes
- push your changes from here (this is the bit that normally trips us up)
- open a pull request on the submodule's repository - we can't open the PR on the main repo until this is merged
You are not done, keep reading! A second pull request is needed to update the main repo, including any other changes to that repo and an update to the submodule pointing to the new (merged) commit to use.
- open your PR for this change including any changes to the main project (so we don't lose it) but label it "don't merge" and add the URL of the submodule PR we're waiting for
- once the submodule has the change you need on its master branch, change into the subdirectory and
git pull
- change directory back up to the root of the project
- commit the submodules changes
- push these changes too
- Now we can review your PR
If you made changes on the repo outside of ADP, then you will need to come and make a commit on ADP to update which commit in the submodule the ADP repository is pointing to.
Make a branch, change into the submodule directory and git pull
or do whatever you need to do to get HEAD
pointing to the correct commit. In the top level of the project, add the change to the submodules file and commit and push. Then open the pull request as you would with any other changes.
Never git add .
this will make bad things happen with submodules. Try git add -p
instead. You're welcome.
If you're not sure what to do, ask for help. It's easier to lend a hand along the way than to rescue it later!
Git docs for submodules: https://git-scm.com/book/en/v2/Git-Tools-Submodules
A flow chart on surviving submodules from @lornajane: https://lornajane.net/posts/2016/surviving-git-submodules
The image may have changed, try rebuilding it with the following command:
$ docker-compose up --build
I get an exception PG::ConnectionBad - could not connect to server: Connection refused
when I try to run the app.
This error indicates that PostgreSQL is not running. If you installed PostgreSQL using brew
you can get information about how to start it by running:
$ brew info postgresql
Once PostgreSQL is running you'll need to create and migrate the database. See Setup for instructions.
Volta is the Vonage design system, and is used to style the Vonage API Developer Portal. To upgrade the version of Volta used:
- Clone Volta on to your local machine
- Remove the
app/assets/volta/scss
folder in the Vonage API Developer Portal - Copy the
scss
folder from the Volta repo in toapp/assets/volta
- Commit and push. Rails will take care of compilation etc
We ❤️ contributions from everyone! It is a good idea to talk to us first if you plan to add any new functionality. Otherwise, bug reports, bug fixes and feedback on the library are always appreciated. Look at the Contributor Guidelines for more information and please follow the GitHub Flow.
Follow these instructions to make updates to any content in the Vonage API Developer Portal repository.
Checkout a new branch, naming it appropriately:
git checkout -b your-branch-name
Locate the file containing the content you wish to update in _documentation/en
and open it in your preferred editor. The URL on the documentation site translates to the file path in _documentation/en
.
Make and save the necessary updates in the file.
Add your changes:
git add -p
Commit the changes in your branch. Include a commit message adequately describing the update(s):
git commit -m “Add a commit message”
Push your branch in order to raise a pull request:
git push origin your-branch-name
Create a pull request in GitHub:
- In the
nexmo-developer
repository, click the Pull requests tab. - Click the Compare and new pull request button next to your branch in the list.
- Review the changes between your branch and master.
- Add a Description of the changes.
- Click the Create pull request button.
This library is released under the MIT License