Technologies | How to run | Project | How to contribute | License
This project was developed with the following techs:
This project was developed to help developers find each other by location and technologies of interest.
To install dependencies
$ yarn
or
$ npm install
To start the server
$ yarn dev
or
$ npm dev
To install dependencies
$ yarn
or
$ npm install
To start the server
$ yarn start
or
$ npm start
mobile/src/services/api.js
import axios from 'axios';
const api = axios.create({
baseURL: 'http://YOUR_IP_ADDRESS:3333',
});
export default api;
mobile/src/services/socket.js
import socketio from 'socket.io-client';
const socket = socketio('http://YOUR_ID_ADDRESS:3333', {
autoConnect: false,
});
To install dependencies
$ yarn
or
$ npm install
To start the server
$ yarn start
or
$ npm start
- Fork this repo;
- Create a branch for your new feature:
git checkout -b my-feature
; - Commit your changes:
git commit -m 'feat: My brand new feature'
; - Push it to your branch:
git push origin my-feature
.
After merge of your pull request, you can delete your branch.
This project is under MIT license. See the file LICENSE for details.