</> Gist Interview is an application built with ReactJS and for any person or company to use to simulate programming questions by simply creating and populating the "db.json" file with its Gist-IDs and at the end generating a dashboard.
First, clone the repo via git:
git clone https://github.com/mariorodeghiero/react-gist-interview.git your-project-name
And then install dependencies with yarn.
$ cd your-project-name
$ yarn
Note: If you can't use yarn, run npm install
.
Install json-server:
$ npm install -g json-server
Start the file "db.json":
$ json-server --watch db.json --port 3001
Open a new tab in the current directory and start the app in the dev
environment:
$ npm run start
or
$ yarn start
After run, the browser open window automatically at http://localhost:3000/
Run the command below to deploy, minimizing All Files.
$ npm run build
or
$ yarn build
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
This project is licensed under the MIT License - see the LICENSE.md file for details