This is a mockup repository for an open source project to be used in the 'Code Collaboration with Github' session to help students getting started with open source and usage of Git.
This is a simple form whose responses can be seen adjacent to it.
Follow the steps described below to get a local copy of this app up and running!
-
Fork the repo
-
Clone the repo
git clone https://github.com/github_username/MLH-localhost.git
- Install all the depedencies :-
In the root directory run the following command
npm install
Migrate to the client folder and run the following command.
npm install
4 Setup the ENV variables
(i) Make a .env
file in the root directory.
(ii) Create the following environment variables: PORT
and set it equal to any port you like. For Eg :- PORT=5000, MONGO_URI
and set it equal to the string provided. For Eg :- MONGO_URI = 'provided string'.
- Start the development server
npm run dev
Being a project of an open source competition, we believe in the power of PRs as that's what makes any project awesome and inspires us to create and learn. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
New change made for the workshop.