File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33All major changes in each released version of the archfx-cloud plugin are listed here.
44
5+ ## 0.16.0
6+
7+ - Updated ` dev ` domain in ` BaseMain ` class to be ` http://localhost ` .
8+
59## 0.15.0
610
711- Use the endpoint ` /auth/user-info/ ` to get account information in the ` BaseMain ` class.
Original file line number Diff line number Diff line change 66Usage:
77 # Assuming
88 # v1_api_router.register(r'some_model', SomeModelViewSet)
9- api = Api('http://127.0.0.1:8000 ')
9+ api = Api('http://localhost ')
1010 api.login(email='user1@test.com', password='user1')
1111 obj_list = api.some_model.get()
1212 logger.debug('Found {0} groups'.format(obj_list['count']))
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ def get_domain(self) -> str:
9595 """
9696 SERVER_TYPE = {
9797 'prod' : 'https://{}.archfx.io' ,
98- 'dev' : 'http://127.0.0.1:8000 '
98+ 'dev' : 'http://localhost '
9999 }
100100
101101 domain_template = SERVER_TYPE [self .args .server_type ]
Original file line number Diff line number Diff line change 1- version = '0.15 .0'
1+ version = '0.16 .0'
You can’t perform that action at this time.
0 commit comments