Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Atlas-Server Commands to CLI Documentation #111

Open
nicknagi opened this issue Mar 17, 2020 · 1 comment
Open

Add Atlas-Server Commands to CLI Documentation #111

nicknagi opened this issue Mar 17, 2020 · 1 comment
Labels
good first issue Good for newcomers
Projects

Comments

@nicknagi
Copy link
Contributor

What's holding us back, and how?
Currently, the CLI docs provide information on all foundations <..> commands. Need to add documentation for atlas-server cli as well.

@nicknagi nicknagi added this to To do in Atlas 🚀 via automation Mar 17, 2020
@mohammedri mohammedri moved this from To do to Backlog in Atlas 🚀 Apr 28, 2020
@mohammedri mohammedri moved this from Backlog to To do in Atlas 🚀 Apr 28, 2020
@mohammedri mohammedri added good first issue Good for newcomers and removed technical-debt labels Jun 3, 2020
@mohammedri
Copy link

The task is to basically add the following arguments into the doc here: https://docs.atlas.dessa.com/en/latest/cli/

        parser = argparse.ArgumentParser(
            description='Starts the standalone Atlas services')
        parser.add_argument('-a',
                            '--archive-port',
                            type=int,
                            default=5557,
                            help='Port to access archive server (default: 8000)')
        parser.add_argument('-d',
                            '--dashboard-port',
                            type=int,
                            default=5555,
                            help='Port to access dashboard (default: 5555)')
        parser.add_argument('-g',
                            '--enable-gpu',
                            action='store_true',
                            help='Launch Atlas server with GPU support')
        parser.add_argument('-p',
                            '--authentication',
                            action='store_true',
                            help='Enable full authentication')
        parser.add_argument('-t',
                            '--disable-tensorboard',
                            action='store_true',
                            help='Launch Atlas server with Tensorboard integration')
        parser.add_argument('-T',
                            '--tensorboard-port',
                            type=int,
                            default=5959,
                            help='Port to access Tensorboard if enabled')
        parser.add_argument('-l',
                            '--logs',
                            action='store_true',
                            help='See logs for Atlas services')
        parser.add_argument('-s',
                            '--scheduler-host',
                            type=str,
                            help='Specify host for Atlas')
        parser.add_argument('-u',
                    '--auth-server-port',
                    type=int,
                    default=8080,
                    help='Port to access authentication server')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
Atlas 🚀
  
To do
Development

No branches or pull requests

2 participants