Official site for Codeuino landing page. Please visit http://www.codeuino.org/
- Requirements
- Installation
- File Structure
- How to contribute
- Credits
Following applications are required to run the application locally.
- Git
- Npm
- Node
To run the application on your local system follow these steps
git clone https://github.com/codeuino/website-www.codeuino.org.git
- Move to the project directory.
git checkout development
npm install
npm run build
npm start
- Open
localhost:5000
to view the website on your local browser.
This section describes about the file structure of the project.
All the source code is located in src
directory.
There are two main directories in the src folder, components
and pages
.
The pages directory contains all the source code of routes in separate folders.
The components directory contains all reusable component file in separate folders.
-
Build and tag docker image
docker image build -f Dockerfile-dev -t {name-of-docker-file-of-your-choice} .
-
Running docker image
lakshyadocker run -it -v ${PWD}:/app -v /app/node_modules -p {Port-you-want-your-app-on}:3000 --rm {docker-image}
You should usually open an issue in the following situations:
- Report an error you can’t solve yourself
- Discuss a high-level topic or idea (for example, community, vision or policies)
- Propose a new feature or other project idea
Tips for communicating on issues:
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. 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. 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.
You should usually open a pull request in the following situations:
- Submit trivial fixes (for example, a typo, a broken link or an obvious error)
- Start work on a contribution that was already asked for, or that you’ve already discussed, in an issue 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.