-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemp
More file actions
40 lines (27 loc) · 952 Bytes
/
temp
File metadata and controls
40 lines (27 loc) · 952 Bytes
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
todo
how to handle infra changes (e.g. change replicas)? move infra folder into app folder?
deploy traefik
multiple apps
e.g. serve front-end and api
create api driven app, e.g. ev-map?
https://api.openchargemap.io/v3/poi/?output=json&countrycode=uk&maxresults=100&compact=true&verbose=false&latitude=52.039532&longitude=-0.556330&distance=20&distanceunit=miles&levelid=3&connectiontypeid=33
https://api.openchargemap.io/v3/referencedata/
Notes on branches...
--------------------
push.yml (Test & lint when (people create a feature branch):
on:
push:
branches:
- '*/*'
- '*'
- '!master'
master.yml (To deploy to a Staging environment):
on:
push:
branches:
- master # Push events on master branch
and finally I have release.yml (to deploy to production when we create a new tag):
on:
push:
branches:
- releases/* # Push events to branches matching refs/heads/releases/*