TinDev is a Tinder clone made by developers to developers. It's a way to find others developers to exchange knowledge and help each other.
To use this repo you will need nodejs@10.*
installed in yout machine.
First of all, clone the repository.
git clone https://github.com/JKFher/TinDev.git
- Enter into the backend folder.
cd backend
. - Install all the dependencies.
yarn
ornpm i
. - Change the Mongoose connection URL into the
routes.js
file.
mongoose.connect(URL_CONNECTION,
{
useNewUrlParser: true
}
);
- Start the application.
yarn dev
ornpm run dev
. - Have fun!
- Enter into the frontend folder.
cd frontend
. - Install all the dependencies.
yarn
ornpm i
. - Start the application.
yarn start
ornpm run start
. - Have fun!
- Enter into the frontend folder.
cd frontend
. - Install all the dependencies.
yarn
ornpm i
. - Make sure that you have everything to run React Native Applications.
- Start the application.
react-native run-android
. - LINUX/OSX - Start the node server.
react-native start
- Have fun!
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.