~techalchemy/mojo/python3-fixes

« back to all changes in this revision

Viewing changes to docs/mojo/index.md

  • Committer: Dan Ryan
  • Date: 2020-02-03 23:44:35 UTC
  • mfrom: (514.2.10 mojo)
  • Revision ID: dan.ryan@canonical.com-20200203234435-294dc1iv5frgv7ep
* [mthaddon] If series is focal, juju deploy needs --force option
* [mthaddon] Deal with charm lines that include quotes for charmstore locations
* [mthaddon] Disable debug-logs by default - tends to simply clutter logs
* [mthaddon] Update supported series for PPAs and remove need to create MOJO_ROOT
* [mthaddon] Only check for charm repo if we're using non-Charmstore charms

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
environment deployments. It's available as an open source project under the
6
6
GPLv3 license on [Launchpad](https://launchpad.net/mojo).
7
7
 
8
 
To get started with mojo, on trusty, xenial or yakety (using the mojo-how-to
9
 
spec as an example):
 
8
To get started with mojo (using the mojo-how-to spec as an example):
10
9
 
11
10
 1. Install Mojo via the [snap](https://snapcraft.io/):
12
11
 
13
12
        sudo snap install --classic mojo
14
13
 
15
 
    Alternatively, Mojo is available via a [PPA](https://help.launchpad.net/Packaging/PPA):
 
14
    Alternatively, Mojo is available via a [PPA](https://help.launchpad.net/Packaging/PPA) on trusty, xenial and bionic:
16
15
 
17
16
        sudo add-apt-repository ppa:mojo-maintainers/ppa
18
17
        sudo apt-get update
27
26
 
28
27
 3. Export variables to save typing later on, and create a project:
29
28
 
30
 
        # Create mojo's working directory.
31
 
        mkdir -p ~/.local/share/mojo
32
29
        # Export mojo variables - do this each time you use mojo
33
30
        # to save having to pass extra command line options to mojo.
34
 
        export MOJO_ROOT=~/.local/share/mojo
35
31
        export MOJO_SERIES=trusty
36
32
        export MOJO_PROJECT=mojo-how-to
37
33
        export MOJO_WORKSPACE=$MOJO_PROJECT