Git Product home page Git Product logo

arvanclouds3's Introduction

ArvanCloudS3

Contributing to ArvanCloudS3

This is a short guide on how to contribute things to ArvanCloudS3.

Submitting a new feature or bug fix

If you find a bug that you'd like to fix, or a new feature that you'd like to implement then please submit a pull request via GitHub.

If it is a big feature, then make an issue first so it can be discussed.

To prepare your pull request first press the fork button on ArvanClouds3's GitHub page.

Next open your terminal, change directory to your preferred folder and initialise your local arvanclouds3 project:

git clone https://github.com/arvancloud/arvanclouds3.git
cd arvanclouds3
git remote rename origin upstream
  # if you have SSH keys setup in your GitHub account:
git remote add origin [email protected]:YOURUSER/arvanclouds3.git
  # otherwise:
git remote add origin https://github.com/YOURUSER/arvanclouds3.git

Finally make a branch to add your new feature

git checkout -b my-new-feature

Committing your changes

Follow the guideline for commit messages and then:

git checkout my-new-feature      # To switch to your branch
git status                       # To see the new and changed files
git add FILENAME                 # To select FILENAME for the commit
git status                       # To verify the changes to be committed
git commit                       # To do the commit
git log                          # To verify the commit. Use q to quit the log

When you are done with that push your changes to Github:

git push -u origin my-new-feature

Run The Project

For run the project install dependencies first:

npm install

Then run project on dev mode:

npm start

For run the project on production mode:

npm run react-build             # To build frontend in build folder
electron .

Package The Project

In resource/app directory:

  • backend/store/user-data.json must be exist and empty
  • forget public folder
  • forget src folder
  • node_modules folder just need main dependencies
    • npm install --production

Writing Documentation

If you are adding a new feature then please update the documentation.

arvanclouds3's People

Contributors

nosaraei avatar ehsantdy avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.