Rapton is a Open Source Project that builds resume for developer's which takes input from users like name, email, education, skills, social profiles, work experience, projects, achievements, and then compile the data to generate a resume of selected template.
Visit the website: Rapton
Are we missing any of your favorite features, which you think you can add to it❓ We invite you to contribute to this project and make it better. To start contributing, follow the below guidelines:
1. Fork this repository.
2. Clone your forked copy of the project.
$ git clone https://github.com/<your_github_user_name>/rapton-react-client.git
3. Navigate to the project directory.
$ cd rapton-react-client
4. Create a new branch:
$ git checkout -b YourBranchName
5. Make changes in source code and stage.
$ git add .
6. Commit your changes.
$ git commit -m "<your_commit_message>"
7. Push your local commits to the remote repo.
$ git push origin YourBranchName
8. Create a Issue and mention which new features or extension enhance this Project.
9. Create a PR
10. If anyone contribute to this repository, then the changes will not reflect in your local repository. For that:
11. Setup a reference(remote) to the original repository to get all the changes from the remote.
$ git remote add upstream https://github.com/itsmdasifraza/rapton-react-client
12. Check the remotes for this repository.
$ git remote -v
13. Make sure that you're on your master branch.
$ git checkout master
14. This will bring that branch into sync with the upstream.
$ git merge upstream/master
To maintain a safe and inclusive space for everyone to learn and grow, contributors are advised to follow the Code of Conduct.
If you have any feedback or suggestions please reach out to me.
In order to make a hassle-free environment, I implore you all (while contributing) to follow the instructions Contributing Guidelines!
In the project directory, you can run:
$ npm install
Installs packages and libraries.
$ npm start
Runs the app in the development mode. Open http://localhost:3000 to view it in your browser.
The page will reload when you make changes.
You may also see any lint errors in the console.
$ npm test
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
$ npm run build
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
$ npm run eject
Note: this is a one-way operation. Once you eject
, you can't go back!
If you aren't satisfied with the build tool and configuration choices, you can eject
at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject
will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
You don't have to ever use eject
. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.