Skip to content

itavia/Sandbox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome to ONE Record Sandbox!

This repository contains the code and instructions that will help you deploy your first ONE Record Server. Please follow the instructions in order to get the application running.

Configuration

Before deploying the server, you will need to update the config.js file with the following information:

'secretKey': 'somesecretkeyforJWTencryption'
'mongoUrl': 'mongodb://user:password@url:port/database',
'subscriptionKey': 'yoursubscriptionkey',
'url':'yourbaseurl'
Parameter Description
secretKey This key will be used for JWT encryption
mongoUrl URL to your MongoDB database. Instructions on how to setup quickly a MongoDB environment below
subscriptionKey In a subscriber - publisher scenario, this key needs to be sent when your server subscribes to another server's logistics objects. The publisher can POST to/mySubscriptions endpoint only if it has this key
url Base URL of your server

Local testing

For testing the application locally, follow the next steps:

  1. Install Node.js and npm. Please refer to Node.js documentation in order to install the correct version for your operating system: https://nodejs.org/en/download/.
  2. Install the dependencies in the local node_modules folder by running npm install.
  3. Run the server via npm start. Your application should be available at http://localhost:5000.

Swagger API Documentation

Swagger API Documentation can be accessed and tested via http://yourserverbaseurl/api-docs/. If you run the server locally, Swagger documentation can be accessed via http://localhost:5000/api-docs/.

Deployment

MongoDB database

ONE Record Server uses a MongoDB database. In order to setup quickly your own MongoDB environment, we suggest you to use a cloud database service such as mLab.

  1. To get started with mLab, you must first create your free mLab account. When that’s complete, you can add as many database subscriptions as you want.
  2. After you’ve created your account, add a new database subscription. Get started at no cost by creating a free Sandbox database.
  3. Create a database user and password and retrieve your connection info after logging into your account and navigating to the database’s home page: enter image description here
  4. Add your database URL to config.js file: 'mongoUrl': 'mongodb://user:password@url:port/yourdb'

Heroku deployment

You can deploy the ONE Record server on the platform that you wish. We are providing you with simple steps to deploy the application on Heroku platform. You can find the complete instructions on how to deploy a Node.js application on Heroku here.

  1. Create a free Heroku account.
  2. Download and install Heroku CLI.
  3. Login to Heroku via command line: heroku login -i
  4. Checkout the Github repository
  5. Create an app on Heroku via heroku create. The output of the command should look like:

Creating app... done, ⬢ fathomless-escarpment-49684 https://fathomless-escarpment-49684.herokuapp.com/ | https://git.heroku.com/fathomless-escarpment-49684.git

You can now visualize your app via your Heroku dashboard.

  1. Add your Heroku remote as a remote in your current repository via the following command: heroku git:remote -a fathomless-escarpment-49684
  2. Push the code from the Github repository to newly created app: git push heroku master.
  3. All set! Your server should be available at https://fathomless-escarpment-49684.herokuapp.com.

Logistics Objects Examples

Some examples of logistics objects can be found under /examples folder.

IATA ONE Record

You can find further information about ONE Record specifications here.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •