I hereby claim:
- I am danibram on github.
- I am danibram (https://keybase.io/danibram) on keybase.
- I have a public key ASCC_wzM_E88-IMuDm7ccJZHJIppgDbuLJJw_OpUoqjF9wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Una vez el desarrollador quiera desplegar una nueva funcionalidad o testear en un entorno de desarrollo.
Base Scafold project for a docker-compose with automated nginx, it has only 2 services api and pwa Folder Structure:
[proxy folder]
├── conf.d // Folder
├── my_proxy.conf // general nginx conf
├── nginx.tmpl // nginx template
└── vhost.d
└── awesome-domain.com // specific nginx config for that domain
Base Scafold project for a docker-compose with traefik, only 2 services api and pwa, no additional files needed.
| 0 22 * * * /root/ecosystem/auto-backup backup auto |
| const s1 = `` | |
| const s2 = `` | |
| function utf8_to_b64( str ) { | |
| return btoa(unescape(encodeURIComponent( str ))); | |
| } | |
| function b64_to_utf8( str ) { | |
| return decodeURIComponent(escape(atob( str ))); |
| let VideoPlayer = {}; | |
| const pauseSVG = ` | |
| <svg width="26" height="32" viewBox="0 0 24 24"> | |
| <path fill="currentColor" | |
| d="M8 19c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2s-2 .9-2 2v10c0 1.1.9 2 2 2zm6-12v10c0 1.1.9 2 2 2s2-.9 2-2V7c0-1.1-.9-2-2-2s-2 .9-2 2z" /> | |
| </svg> | |
| `; | |
| const playSVG = ` | |
| <svg xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 24 24"> |
| /** | |
| * Making promises | |
| */ | |
| let okPromise = Js.Promise.make((~resolve, ~reject as _) => [@bs] resolve("ok")); | |
| /* Simpler promise creation for static values */ | |
| Js.Promise.resolve("easy"); | |
| Js.Promise.reject(Invalid_argument("too easy")); |