Skip to content

Commit 80158eb

Browse files
authored
Merge fbac6df into 975243a
2 parents 975243a + fbac6df commit 80158eb

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

README.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ Run `npm install` to install the required node_modules for this project.
3131
Run `ng serve` to run the app in dev mode. After executing this command, you can navigate to `http://localhost:4200/` to see the app working.
3232
The app will automatically reload if you change anything in the source files.
3333

34-
## Prepare your environment
34+
# Prepare your environment
3535

3636
### Set environment variables
37-
Create a file keys.ts in the path `src/enviroment` with the content pinned in our slack channel:
37+
**1**. Create a file keys.ts in the path `src/enviroment` with the content pinned in our slack channel #time-tracker-developer:
3838

3939
```
4040
export const AUTHORITY = 'XXX';
@@ -44,7 +44,14 @@ export const STACK_EXCHANGE_ID = 'XXX';
4444
export const STACK_EXCHANGE_ACCESS_TOKEN = 'XXX';
4545
export const AZURE_APP_CONFIGURATION_CONNECTION_STRING = 'XXX';
4646
```
47-
47+
**2**. Create a second file `.keys.json` with the content pinned in the slack channel #time-tracker-developer:
48+
```
49+
{
50+
"authority": 'XXX',
51+
"client_id": 'XXX',
52+
"scopes": ["XXX"]
53+
}
54+
```
4855
### Prepare your environment for vscode
4956
Install the following extensions:
5057

@@ -82,6 +89,12 @@ Install the following extensions:
8289
| `feat(pencil): add 'graphiteWidth' option` | ~~Minor~~ Feature Release |
8390
| `perf(pencil): remove graphiteWidth option`<br><br>`BREAKING CHANGE: The graphiteWidth option has been removed.`<br>`The default graphite width of 10mm is always used for performance reasons.` | ~~Major~~ Breaking Release |
8491

92+
### Branch names format
93+
For example if your task in Jira is **TT-48 implement semantic versioning** your branch name is:
94+
```
95+
TT-48-implement-semantic-versioning
96+
```
97+
8598
## Code scaffolding
8699
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
87100

@@ -127,4 +140,7 @@ To get more help on the Angular CLI use `ng help` or go check out the [Angular C
127140
## Feature Toggles dictionary
128141

129142
Shared file with all the Feature Toggles we create, so we can have a history of them
130-
[Feature Toggles dictionary](https://github.com/ioet/time-tracker-ui/wiki/Feature-Toggles-dictionary)
143+
[Feature Toggles dictionary](https://github.com/ioet/time-tracker-ui/wiki/Feature-Toggles-dictionary)
144+
145+
## More information about the project
146+
[Starting in Time Tracker](https://github.com/ioet/time-tracker-ui/wiki/Time-tracker)

0 commit comments

Comments
 (0)