Skip to content

Commit fddd1d1

Browse files
Updated Readme (#190)
1 parent eaa8c54 commit fddd1d1

File tree

1 file changed

+47
-48
lines changed

1 file changed

+47
-48
lines changed

README.md

Lines changed: 47 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,67 @@
1-
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
1+
# Codeuino Website
22

3-
## Available Scripts
3+
Offical site for Codeuino landing page. Please visit [http://www.codeuino.org/](http://www.codeuino.org/)
44

5-
In the project directory, you can run:
5+
### Table of contents
66

7-
### `npm start`
7+
- Requirements
8+
- Installation
9+
- File Structure
10+
- How to contribute
11+
- Credits
12+
13+
## Requirements
14+
Following applications are required to run the application locally.
15+
16+
- Git
17+
- Npm
18+
- Node
819

9-
Runs the app in the development mode.<br />
10-
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
20+
## Installation
21+
To run the application on your local system follow these steps
1122

12-
The page will reload if you make edits.<br />
13-
You will also see any lint errors in the console.
23+
1. <code>git clone https://github.com/codeuino/website-www.codeuino.org.git</code>
24+
2. Move to the project directory.
25+
3. <code>git checkout development</code>
26+
4. <code>npm install</code>
27+
5. Open <code>localhost:3000</code> to view the website on your local browser.
1428

15-
### `npm test`
29+
## File Structure
1630

17-
Launches the test runner in the interactive watch mode.<br />
18-
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
31+
This section describes about the file structure of the project.
32+
All the source code is located in <code>src</code> directory.
33+
There are two main directories in the src folder, <code>components</code> and <code>pages</code>.
34+
The pages directory contains all the source code of routes in separate folders.
35+
The components directory contains all reusable component file in separate folders.
1936

20-
### `npm run build`
37+
## How to contribute
2138

22-
Builds the app for production to the `build` folder.<br />
23-
It correctly bundles React in production mode and optimizes the build for the best performance.
39+
### Opening an issue
2440

25-
The build is minified and the filenames include the hashes.<br />
26-
Your app is ready to be deployed!
41+
[![GitHub issues](https://img.shields.io/github/issues/codeuino/website-www.codeuino.org?logo=github)](https://github.com/codeuino/website-www.codeuino.org/issues) ![GitHub closed issues](https://img.shields.io/github/issues-closed/codeuino/website-www.codeuino.org?logo=github)
2742

28-
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
43+
You should usually [open an issue](https://github.com/codeuino/website-www.codeuino.org/issues/new) in the following situations:
2944

30-
### `npm run eject`
45+
* Report an error you can’t solve yourself
46+
* Discuss a high-level topic or idea (for example, community, vision or policies)
47+
* Propose a new feature or other project idea
3148

32-
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
49+
**Tips for communicating on issues:**
3350

34-
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.
51+
If you see an open issue that you want to tackle, comment on the issue to let people know you’re on it. That way, people are less likely to duplicate your work.
52+
If an issue was opened a while ago, it’s possible that it’s being addressed somewhere else, or has already been resolved, so comment to ask for confirmation before starting work.
53+
If you opened an issue, but figured out the answer later on your own, comment on the issue to let people know, then close the issue. Even documenting that outcome is a contribution to the project.
3554

36-
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.
55+
### Opening a pull request
3756

38-
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.
57+
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?logo=github)](http://makeapullrequest.com) ![GitHub pull requests](https://img.shields.io/github/issues-pr-raw/codeuino/website-www.codeuino.org?logo=git&logoColor=white) ![GitHub contributors](https://img.shields.io/github/contributors/codeuino/website-www.codeuino.org?logo=github)
3958

40-
## Learn More
59+
You should usually open a pull request in the following situations:
4160

42-
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
61+
* Submit trivial fixes (for example, a typo, a broken link or an obvious error)
62+
* Start work on a contribution that was already asked for, or that you’ve already discussed, in an issue
63+
A pull request doesn’t have to represent finished work. It’s usually better to open a pull request early on, so others can watch or give feedback on your progress. Just mark it as a “WIP” (Work in Progress) in the subject line. You can always add more commits later.
4364

44-
To learn React, check out the [React documentation](https://reactjs.org/).
65+
## Credits
4566

46-
### Code Splitting
47-
48-
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
49-
50-
### Analyzing the Bundle Size
51-
52-
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
53-
54-
### Making a Progressive Web App
55-
56-
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
57-
58-
### Advanced Configuration
59-
60-
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
61-
62-
### Deployment
63-
64-
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
65-
66-
### `npm run build` fails to minify
67-
68-
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
67+
This project is currently maintained by [Jaskirat Singh](https://github.com/jaskirat2000) .

0 commit comments

Comments
 (0)