Skip to content

arcchang1236/projectize

 
 

Repository files navigation

Projectize

Behold, make your own research project website in modern way.

⚜️ ⚜️ ⚜️

Prerequisites

Get Started

In the project directory, you can run:

  • Setup the enviroment

    yarn install
    
    // or
    npm install
  • Run the development environment

    yarn start
    
    // or
    npm start

    The page opened in https://localhost:3000 will reload if you make edits. You will also see any lint errors in the console.

    Put all your result images under the public/ and with the correct path.

  • Pack for production

    yarn build
    
    // or
    npm run build

    Build the app for production and output to the build folder. It correctly bundles React in production mode and optimizes the build for the best performance.

  • Pack for production

    Deploy the build folder to Github Page. The URL of page will be https://{username}.github.io/{repo-name} where username is your Github username and repo-name is your Github repositary.

    1. Edit "homepage" entry in the package.json.

      "homepage": "https://{username}.github.io/{repo-name}"
    2. Deploy to the gh-pages branch of your repositary can specified by additional argument -r.

      yarn deploy -r {your-repo-github-url}
      
      // or
      npm run deploy -r {your-repo-github-url}
  • Develop with linter and prettier

    We use eslint and prettier to keep the source great!

    yarn lint
    yarn lint --fix
    
    // or
    npm run lint
    npm run lint  --fix

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 92.8%
  • HTML 6.6%
  • JavaScript 0.6%