├── screenshots ├── .DS_Store ├── edit-web.png ├── sign-web.png ├── details-web.png ├── profile-web.png ├── sign-mobile.png ├── signup-web.png ├── insomnia-api.png ├── meetups-mobile.png ├── profile-mobile.png ├── signup-mobile.png ├── sroll-mobile.png ├── listMeetup-werb.png └── inscricoes-mobile.png ├── LICENSE ├── README.md └── Insomnia_2019-10-27.json /screenshots/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmarinho/meetapp/HEAD/screenshots/.DS_Store -------------------------------------------------------------------------------- /screenshots/edit-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmarinho/meetapp/HEAD/screenshots/edit-web.png -------------------------------------------------------------------------------- /screenshots/sign-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmarinho/meetapp/HEAD/screenshots/sign-web.png -------------------------------------------------------------------------------- /screenshots/details-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmarinho/meetapp/HEAD/screenshots/details-web.png -------------------------------------------------------------------------------- /screenshots/profile-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmarinho/meetapp/HEAD/screenshots/profile-web.png -------------------------------------------------------------------------------- /screenshots/sign-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmarinho/meetapp/HEAD/screenshots/sign-mobile.png -------------------------------------------------------------------------------- /screenshots/signup-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmarinho/meetapp/HEAD/screenshots/signup-web.png -------------------------------------------------------------------------------- /screenshots/insomnia-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmarinho/meetapp/HEAD/screenshots/insomnia-api.png -------------------------------------------------------------------------------- /screenshots/meetups-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmarinho/meetapp/HEAD/screenshots/meetups-mobile.png -------------------------------------------------------------------------------- /screenshots/profile-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmarinho/meetapp/HEAD/screenshots/profile-mobile.png -------------------------------------------------------------------------------- /screenshots/signup-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmarinho/meetapp/HEAD/screenshots/signup-mobile.png -------------------------------------------------------------------------------- /screenshots/sroll-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmarinho/meetapp/HEAD/screenshots/sroll-mobile.png -------------------------------------------------------------------------------- /screenshots/listMeetup-werb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmarinho/meetapp/HEAD/screenshots/listMeetup-werb.png -------------------------------------------------------------------------------- /screenshots/inscricoes-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgmarinho/meetapp/HEAD/screenshots/inscricoes-mobile.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Thiago Marinho 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Thiago Marinho](https://pbs.twimg.com/profile_banners/41742474/1490016588/1500x500) 2 | 3 | # MeetApp 4 | 5 | > Meetapp (an acronym for Meetup + App): App for organizing, viewing and subscribing meetups for developers. 6 | 7 | Link to each projects are below: 8 | 9 | * Backend API NodeJS: [https://github.com/tgmarinho/meetapp-api](https://github.com/tgmarinho/meetapp-api) 10 | * Frontend React (CRA): [https://github.com/tgmarinho/meetapp-react](https://github.com/tgmarinho/meetapp-react) 11 | * Mobile (React Native): [https://github.com/tgmarinho/meetappRN](https://github.com/tgmarinho/meetappRN) 12 | 13 | 14 | ![Details web](screenshots/details-web.png) 15 | 16 | 17 | ## Getting Started 18 | 19 | These instructions will get you a copy of the full project up and running on your local machine for development and testing purposes. 20 | 21 | The project can be built with npm or yarn, so choose one of the approach bellow in case you don't have any installed on your system. 22 | 23 | * **Npm** is distributed with Node.js which means that when you download Node.js, you automatically get npm installed on your computer. [Download Node.js](https://nodejs.org/en/download/) 24 | 25 | * **Yarn** is a package manager built by Facebook Team and seems to be faster than npm in general. [Download Yarn](https://yarnpkg.com/en/docs/install) 26 | 27 | * **React Native CLI** is a package that contains tools and helpers for React Native projects in form of a command line tool. [Download React Native CLI](https://facebook.github.io/react-native/docs/getting-started) 28 | 29 | ## Setting up Databases and Services 30 | 31 | The project uses [PostgreSQL](https://www.postgresql.org), [MongoDB](https://www.mongodb.com) and [Redis](https://redis.io). 32 | 33 | I recommend use [Docker](https://www.docker.com) to install and run the databases and services above. 34 | 35 | ## How to Install 36 | 37 | ### Backend (API) 38 | 39 | * To download the project follow the instructions bellow: 40 | 41 | ``` 42 | 1. git clone https://github.com/tgmarinho/meetapp-api.git 43 | 2. cd meetapp-api 44 | ``` 45 | 46 | * Install the dependencies and start the server: 47 | 48 | ``` 49 | 3. yarn install 50 | 4. yarn dev 51 | ``` 52 | 53 | or 54 | 55 | ``` 56 | 3. npm install 57 | 4. npm dev 58 | ``` 59 | 60 | Rename the file `.env.example` to `.env` and create yours environment variables and replace them. It's is very important for running the server. 61 | 62 | Also, I'm sending the Insomnia file for call the API, download it [here](https://github.com/tgmarinho/meetapp/blob/master/Insomnia_2019-10-27.json). 63 | 64 | ### Frontend (React) 65 | 66 | * To download the project follow the instructions bellow: 67 | 68 | ``` 69 | 1. git clone https://github.com/tgmarinho/meetapp-react.git 70 | 2. cd meetapp-react 71 | ``` 72 | 73 | * Install the dependencies and start the project: 74 | 75 | ``` 76 | 3. yarn install 77 | 4. yarn start 78 | ``` 79 | 80 | or 81 | 82 | ``` 83 | 3. npm install 84 | 4. npm start 85 | ``` 86 | 87 | ### Mobile 88 | 89 | * To download the project follow the instructions bellow: 90 | 91 | ``` 92 | 1. git clone https://github.com/tgmarinho/meetappRN.git 93 | 2. cd meetappRN 94 | ``` 95 | 96 | * Install dependencies 97 | 98 | ``` 99 | 1. yarn install 100 | ``` 101 | 102 | * Start the application: 103 | 104 | ``` 105 | 3. react-native run-ios 106 | ``` 107 | 108 | 109 | ## Keep in Touch 110 | 111 | Thiago Marinho 112 | * [tgmarinho@gmail.com](mailto:tgmarinho@gmail.com) 113 | * [tgmarinho.com](http://tgmarinho.com) 114 | * [twitter/tgmarinho](http://twitter.com/tgmarinho) 115 | * [github.com/tgmarinho](http://github.com/tgmarinho) 116 | * [linkedin.com/in/tgmarinho](http://linkedin.com/in/tgmarinho) 117 | 118 | 119 | ## Screen Shots 120 | 121 | 122 | * Editing Meetup 123 | 124 | ![Editing Web](screenshots/edit-web.png) 125 | 126 | * Listing Meetups 127 | 128 | ![Insomnia](screenshots/listMeetup-werb.png) 129 | 130 | * Profile Frontend 131 | 132 | ![Insomnia](screenshots/profile-web.png) 133 | 134 | * SignIn Web 135 | 136 | ![Insomnia](screenshots/sign-web.png) 137 | 138 | * SignUp Web 139 | 140 | ![Insomnia](screenshots/signup-web.png) 141 | 142 | * Inscrições Mobile 143 | 144 | ![Insomnia](screenshots/inscricoes-mobile.png) 145 | 146 | * Meetups Mobile 147 | 148 | ![Insomnia](screenshots/meetups-mobile.png) 149 | 150 | * SignIn Mobile 151 | 152 | ![Insomnia](screenshots/sign-mobile.png) 153 | 154 | * SignUp Mobile 155 | 156 | ![Insomnia](screenshots/signup-mobile.png) 157 | 158 | * Infinite Scroll Mobile 159 | 160 | ![Insomnia](screenshots/sroll-mobile.png) 161 | 162 | 163 | * Insomnia API 164 | 165 | ![Insomnia](screenshots/insomnia-api.png) 166 | 167 | 168 | That's it! =) 169 | 170 | ## Thank you 171 | 172 | Thanks [Rocketseat](https://rocketseat.com.br/) I really liked the bootcamp! 173 | 174 | ## License 175 | 176 | This project could be used by anyone! MIT License 177 | -------------------------------------------------------------------------------- /Insomnia_2019-10-27.json: -------------------------------------------------------------------------------- 1 | {"_type":"export","__export_format":4,"__export_date":"2019-10-28T02:35:55.254Z","__export_source":"insomnia.desktop.app:v7.0.3","resources":[{"_id":"req_096c6ace82224485a5d02fdbd2044f5b","authentication":{"token":"{{ token }}","type":"bearer"},"body":{},"created":1571840332027,"description":"","headers":[],"isPrivate":false,"metaSortKey":-1571840332027,"method":"GET","modified":1571840638230,"name":"Index","parameters":[],"parentId":"fld_3c3a7a929f384a54968e3474f2ba7a6f","settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingSendCookies":true,"settingStoreCookies":true,"url":"{{ baseUrl }}/dashboard","_type":"request"},{"_id":"fld_3c3a7a929f384a54968e3474f2ba7a6f","created":1571840327386,"description":"","environment":{},"environmentPropertyOrder":null,"metaSortKey":-1571840327386,"modified":1571840327386,"name":"Dashboard","parentId":"wrk_3e26c3642ce14b6ca42c2153dd50df52","_type":"request_group"},{"_id":"wrk_3e26c3642ce14b6ca42c2153dd50df52","created":1568637841228,"description":"","modified":1568637841228,"name":"MeetApp - API","parentId":null,"_type":"workspace"},{"_id":"req_bdf6a071b57f466e827d27b5bd5f7c8f","authentication":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MTAsImlhdCI6MTU3MjE4NDYyMiwiZXhwIjoxNTcyNzg5NDIyfQ.B5oPozVuQgrfzLlzLP4Z_a7HLlE23LhbaDoOCF3VXNU","type":"bearer"},"body":{"mimeType":"application/json","text":"{\n\t\"meetup_id\": 35\n}"},"created":1568917614636,"description":"","headers":[{"id":"pair_c6040eb215b340d29cda3d6379acb27e","name":"Content-Type","value":"application/json"}],"isPrivate":false,"metaSortKey":-1568917614636,"method":"POST","modified":1572184643565,"name":"Subscription","parameters":[],"parentId":"fld_1e414fe3ace846f2a392c49c0ef0de0c","settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingSendCookies":true,"settingStoreCookies":true,"url":"{{ baseUrl }}/registration","_type":"request"},{"_id":"fld_1e414fe3ace846f2a392c49c0ef0de0c","created":1568917568790,"description":"","environment":{},"environmentPropertyOrder":null,"metaSortKey":-1568917568790,"modified":1568917574168,"name":"Registrations","parentId":"wrk_3e26c3642ce14b6ca42c2153dd50df52","_type":"request_group"},{"_id":"req_cd67f279a03e48679a45d0affd39cf4d","authentication":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MTAsImlhdCI6MTU3MjE4NDYyMiwiZXhwIjoxNTcyNzg5NDIyfQ.B5oPozVuQgrfzLlzLP4Z_a7HLlE23LhbaDoOCF3VXNU","type":"bearer"},"body":{},"created":1572187187757,"description":"","headers":[],"isPrivate":false,"metaSortKey":-1568914817941.25,"method":"DELETE","modified":1572187477222,"name":"Canceling","parameters":[],"parentId":"fld_1e414fe3ace846f2a392c49c0ef0de0c","settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingSendCookies":true,"settingStoreCookies":true,"url":"{{ baseUrl }}/registration/5","_type":"request"},{"_id":"req_514c606221394cdfbadde90a8f947e5e","authentication":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MTAsImlhdCI6MTU3MjEyNTgzOSwiZXhwIjoxNTcyNzMwNjM5fQ.yj2dlBsfcoWRwJF0PYprh2XqIyoS6NJcDoG_ttJChqg","type":"bearer"},"body":{},"created":1568995315512,"description":"","headers":[],"isPrivate":false,"metaSortKey":-1568912021246.5,"method":"GET","modified":1572125853060,"name":"List with Paginate","parameters":[],"parentId":"fld_1e414fe3ace846f2a392c49c0ef0de0c","settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingSendCookies":true,"settingStoreCookies":true,"url":"{{ baseUrl }}/registration","_type":"request"},{"_id":"req_cbe4a681317f47198ffcd3982916201d","authentication":{"token":"{{ token }}","type":"bearer"},"body":{},"created":1571863311123,"description":"","headers":[],"isPrivate":false,"metaSortKey":-1571863311123,"method":"GET","modified":1571863637280,"name":"Show","parameters":[],"parentId":"fld_3e164a7516cd4a52b2d5049cad2c851c","settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingSendCookies":true,"settingStoreCookies":true,"url":"{{ baseUrl }}/meetups/9","_type":"request"},{"_id":"fld_3e164a7516cd4a52b2d5049cad2c851c","created":1568906414069,"description":"","environment":{},"environmentPropertyOrder":null,"metaSortKey":-1568906414069,"modified":1568906414069,"name":"Meetups","parentId":"wrk_3e26c3642ce14b6ca42c2153dd50df52","_type":"request_group"},{"_id":"req_d9fc81d5b3a6487c917b6ee7b898188e","authentication":{"token":"","type":"bearer"},"body":{},"created":1568910798963,"description":"","headers":[],"isPrivate":false,"metaSortKey":-1568906427857,"method":"GET","modified":1572226959609,"name":"Index","parameters":[{"disabled":false,"id":"pair_baf76f7a405749008b42d355b7c2b93f","name":"date","value":"2019-10-29T19:00:00-04:00"},{"disabled":false,"id":"pair_cb8eb4ea5b804a239b15c1c6d948e9e5","name":"page","value":"1"}],"parentId":"fld_3e164a7516cd4a52b2d5049cad2c851c","settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingSendCookies":true,"settingStoreCookies":true,"url":"{{ baseUrl }}/meetups","_type":"request"},{"_id":"req_9baf36ab3f204c06bf3f5fc7a7c0a750","authentication":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MywiaWF0IjoxNTcyMjEwMzQ0LCJleHAiOjE1NzI4MTUxNDR9.vdzWcJ2E1NhP-wFyGzSj_iG3lnZTCUZJWOiqtkwoXMI","type":"bearer"},"body":{"mimeType":"application/json","text":"{\n\t\"title\": \"Meetup de Iphone\",\n\t\"description\": \"Vamos aprender a utilizar o iphone\",\n\t\"localization\": \"Rua Oliveira Marques, 1418\",\n\t\"date\": \"2019-10-28T20:07:00-04:00\",\n\t\"banner_id\": 4\n}"},"created":1568906427807,"description":"","headers":[{"id":"pair_919598ddce84465b9631a9cdab8a86ef","name":"Content-Type","value":"application/json"}],"isPrivate":false,"metaSortKey":-1568906427807,"method":"POST","modified":1572210418482,"name":"Create","parameters":[],"parentId":"fld_3e164a7516cd4a52b2d5049cad2c851c","settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingSendCookies":true,"settingStoreCookies":true,"url":"{{ baseUrl }}/meetups","_type":"request"},{"_id":"req_4a0553a705f74e27a480f98866bf5fd6","authentication":{"token":"{{ token }}","type":"bearer"},"body":{"mimeType":"application/json","text":"{\n\t \"banner_id\": 2\n}"},"created":1568909968612,"description":"","headers":[{"id":"pair_503b362641a84cfd9de98da96589cf8a","name":"Content-Type","value":"application/json"}],"isPrivate":false,"metaSortKey":-1568861925487.5,"method":"PUT","modified":1571839798734,"name":"Update","parameters":[],"parentId":"fld_3e164a7516cd4a52b2d5049cad2c851c","settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingSendCookies":true,"settingStoreCookies":true,"url":"{{ baseUrl }}/meetups/4","_type":"request"},{"_id":"req_7c8905c540324294b909cd42a63473ab","authentication":{"token":"{{ token }}","type":"bearer"},"body":{},"created":1568911289716,"description":"","headers":[],"isPrivate":false,"metaSortKey":-1568839674327.75,"method":"DELETE","modified":1572208790400,"name":"Delete","parameters":[],"parentId":"fld_3e164a7516cd4a52b2d5049cad2c851c","settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingSendCookies":true,"settingStoreCookies":true,"url":"{{ baseUrl }}/meetups/41","_type":"request"},{"_id":"req_20517b2374814bd8a5a4aedcfb45499c","authentication":{"prefix":"","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MywiaWF0IjoxNTcyMjEwMzQ0LCJleHAiOjE1NzI4MTUxNDR9.vdzWcJ2E1NhP-wFyGzSj_iG3lnZTCUZJWOiqtkwoXMI","type":"bearer"},"body":{"mimeType":"multipart/form-data","params":[{"fileName":"/Users/tgmarinho/Downloads/Festa das Crianças.png","id":"pair_a371bdddc70f42ffaa564f2c64bcc2d9","name":"file","type":"file","value":""}]},"created":1568644376890,"description":"","headers":[{"id":"pair_fde5ab26844d4edbb1588b296cabe45d","name":"Content-Type","value":"multipart/form-data"}],"isPrivate":false,"metaSortKey":-1568644376890,"method":"POST","modified":1572210364749,"name":"Create","parameters":[],"parentId":"fld_96126e380ecc4dc688e29cf1cf855c2d","settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingSendCookies":true,"settingStoreCookies":true,"url":"{{ baseUrl }}/files","_type":"request"},{"_id":"fld_96126e380ecc4dc688e29cf1cf855c2d","created":1568644357828,"description":"","environment":{},"environmentPropertyOrder":null,"metaSortKey":-1568644357828,"modified":1568644366053,"name":"Files","parentId":"wrk_3e26c3642ce14b6ca42c2153dd50df52","_type":"request_group"},{"_id":"req_913642fcccc149758fd1fcbf4f8dfe46","authentication":{},"body":{"mimeType":"application/json","text":"{\n\t\"email\": \"inso@gmail.com\",\n\t\"password\": \"123456\"\n}"},"created":1568641378976,"description":"","headers":[{"id":"pair_df77be9842f14b84a2d561883a3fe417","name":"Content-Type","value":"application/json"}],"isPrivate":false,"metaSortKey":-1568641378976,"method":"POST","modified":1572210343229,"name":"Login","parameters":[],"parentId":"fld_339d03bcbfea49ce8ff4244360b4af49","settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingSendCookies":true,"settingStoreCookies":true,"url":"{{ baseUrl }}/sessions","_type":"request"},{"_id":"fld_339d03bcbfea49ce8ff4244360b4af49","created":1568641366994,"description":"","environment":{},"environmentPropertyOrder":null,"metaSortKey":-1568641366994,"modified":1568641366994,"name":"Sessions","parentId":"wrk_3e26c3642ce14b6ca42c2153dd50df52","_type":"request_group"},{"_id":"req_c916883f16d24072ac08fd33b73c8b48","authentication":{},"body":{"mimeType":"application/json","text":"{\n\t\"name\": \"Insomnia\",\n\t\"email\": \"inso@gmail.com\",\n\t\"password\": \"123456\"\n}"},"created":1568640755458,"description":"","headers":[{"id":"pair_64872dbab32348aaa76b25e6229b9f88","name":"Content-Type","value":"application/json"}],"isPrivate":false,"metaSortKey":-1568640755458,"method":"POST","modified":1572210334632,"name":"Create","parameters":[],"parentId":"fld_0da05c7bd7ec4bdbb29a1d5c55ca551d","settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingSendCookies":true,"settingStoreCookies":true,"url":"{{ baseUrl }}/users","_type":"request"},{"_id":"fld_0da05c7bd7ec4bdbb29a1d5c55ca551d","created":1568640742845,"description":"","environment":{},"environmentPropertyOrder":null,"metaSortKey":-1568640742845,"modified":1568640742845,"name":"Users","parentId":"wrk_3e26c3642ce14b6ca42c2153dd50df52","_type":"request_group"},{"_id":"req_1c210f91a5884b72b8b3e6987a756f4e","authentication":{"token":"{{ token }}","type":"bearer"},"body":{"mimeType":"application/json","text":"{\n\t\"name\": \"Thiago Marinho\",\n\t\"email\": \"tgmarinho@gmail.com\",\n\t\"oldPassword\": \"123456\",\n\t\"password\": \"1234567\",\n\t\"confirmPassword\": \"1234567\"\n}"},"created":1568642155064,"description":"","headers":[{"id":"pair_64872dbab32348aaa76b25e6229b9f88","name":"Content-Type","value":"application/json"}],"isPrivate":false,"metaSortKey":-1568522763981,"method":"PUT","modified":1571839293312,"name":"Update","parameters":[],"parentId":"fld_0da05c7bd7ec4bdbb29a1d5c55ca551d","settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingSendCookies":true,"settingStoreCookies":true,"url":"{{ baseUrl }}/users","_type":"request"},{"_id":"env_516aa80b9c73c9406b46f3568a146a38982f8712","color":null,"created":1568637841358,"data":{"baseUrl":"http://localhost:3333","token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6OCwiaWF0IjoxNTcyMTE2OTUyLCJleHAiOjE1NzI3MjE3NTJ9.dJFD-or7Xlg_V3yuDrr0UpDaKVdH1iZvOUkyaSVmhLc"},"dataPropertyOrder":{"&":["baseUrl","token"]},"isPrivate":false,"metaSortKey":1568637841358,"modified":1572116968218,"name":"Base Environment","parentId":"wrk_3e26c3642ce14b6ca42c2153dd50df52","_type":"environment"},{"_id":"jar_516aa80b9c73c9406b46f3568a146a38982f8712","cookies":[],"created":1568637841362,"modified":1568637841362,"name":"Default Jar","parentId":"wrk_3e26c3642ce14b6ca42c2153dd50df52","_type":"cookie_jar"}]} --------------------------------------------------------------------------------