Browse Source

update migration doc

Guénaël Muller 6 years ago
parent
commit
cb6606ac8c
1 changed files with 3 additions and 4 deletions
  1. 3 4
      doc/migration.md

+ 3 - 4
doc/migration.md View File

@@ -6,12 +6,11 @@ This document is intended to developers.
6 6
 
7 7
 Migrations on `Tracim` lays on [`alembic`](http://alembic.zzzcomputing.com/en/latest/index.html) which is the migration tool dedicated to `SQLAlchemy`.
8 8
 
9
-In order to use the `alembic` commands, change your current directory to be `tracim/` from the root of the project, also usually named `tracim/` 
9
+In order to use the `tracimcli` commands, go to the root of the project and
10 10
 and active the Tracim virtualenv:
11 11
 
12
-    user@host:~/tracim_backend$ cd tracim/
13
-    user@host:~/tracim_backend/tracim$ source env/bin/activate
14
-    (env) user@host:~/tracim_backend/tracim$
12
+    user@host:~/tracim_backend$ source env/bin/activate
13
+    (env) user@host:~/tracim_backend$
15 14
 
16 15
 ## Migration howto - Overview ##
17 16