Getting Started

Atlas is a library that adds CenturyLink Platform specific business logic on top of Cyclops, and is hosted on the CenturyLink Platform Assets Server. For more information about how to setup up and use Cyclops visit its documentation.

To get started, you will need to include and setup Cyclops. Then include the Atlas JavaScript file and call liftoff. Information on the liftoff call can be found on the documentation page.

To prevent attackers from spoofing our sites and maliciously performing SSO, a list of allowed domains is maintained in Auth0. Each team will need to submit a ticket to get their domains (dev, prod, etc) added to this list.

            
<!DOCTYPE html>
<html class="cyclops">
  <head>
    <link href="https://assets.ctl.io/cyclops/1.8.4/css/cyclops.min.css" rel="stylesheet" type="text/css" />
    <!-- Your Styles Here -->
  </head>
  <body>
    <!-- Your Content Here -->

    <script src="https://code.jquery.com/jquery-2.1.4.min.js" ></script>
    <script src="https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.3.0.js" ></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/knockout-validation/2.0.3/knockout.validation.min.js" ></script>
    <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.11.1/moment.min.js"></script>
    <script src="https://cdn.jsdelivr.net/chartist.js/latest/chartist.min.js"></script>
    <script src="https://assets.ctl.io/cyclops/1.8.4/scripts/cyclops.min.js" ></script>
    <script src="https://assets.ctl.io/atlas/3.0.0-beta.2/scripts/atlas.min.js" ></script>
    <script>
      $(function(){
        Atlas.liftoff({
          env: "prod",
          mainNavId: "Assigned by Platform"
      })
    </script>
    <!-- Your Scripts Here -->
  </body>
</html>