-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathzdevsysinit_params.sample.abap
More file actions
44 lines (39 loc) · 1.33 KB
/
Copy pathzdevsysinit_params.sample.abap
File metadata and controls
44 lines (39 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
* Example for include zdevsysinit_params.
*
* For simplicity, configuration is in code so it can be added to a new system
* by copy/paste.
* This is your personal config setup and should contain the customizations
* and kept locally or in a Gist or personal repo.
*
* On a new dev system:
* - create include zdevsysinit_params
* - paste content of this example
* - adapt as needed
* - run zdevsysinit.
*&---------------------------------------------------------------------*
*& Include zdevsysinit_params
*&---------------------------------------------------------------------*
" Your GitHub (or other git host) user
github_user = `mygithubuser`.
github_token = ``.
" Add SSL certificates for these hosts to the SAP system
sslhosts = VALUE #(
( `github.com` )
( `github.io` )
).
" Change current user (DEVELOPER)
profile = VALUE #(
username = sy-uname
firstname = 'John'
lastname = 'Doe'
email = 'someone@example.com'
date_format = user_profile=>date_format-dmy_dot
decimal_format = user_profile=>decimal_format-point
hide_menu_picture = abap_true
show_menu_tcodes = abap_true
).
" Git repositories to be pulled
repos = VALUE #(
( name = `abapGit` package = `$ZABAPGIT` url = `https://github.com/abapgit/abapgit` )
( name = `ABAP2XLSX` package = `$ZABAP2XLSX` url = `https://github.com/abap2xlsx/abap2xlsx` )
).