Skip to content
This repository has been archived by the owner on Mar 16, 2020. It is now read-only.

ungdev/UA-appli

Repository files navigation

UA-appli

Application web de l'UTT Arena permettant aux joueurs d'accéder à des informations sur les tournois et au staff de gérer l'événement

https://uttarena.app

Requirements

Installation

git clone git@github.com:ungdev/UA-appli.git
# or
git clone https://github.com/ungdev/UA-appli.git

cd UA-appli
yarn

Configuration

# copy env file for all environments
cp .env .env.local
# makes your changes in .env.local, which will not be pushed
nano .env.local

# copy env file for development environment
cp .env.development .env.development.local
# makes your changes in .env.development.local, which will not be pushed
nano .env.development.local

Commands

yarn dev    # development server
yarn build  # build production assets
yarn start  # static server
yarn serve  # pm2 static server (load balancing)
yarn reload # pm2 hot reload
yarn lint   # prettier lint

Structure

UA-appli/
├── public/                       # public assets that will be served directly (should not be used for fonts, images nor css)
├── src/                          # base directory
│   ├── assets/                      # assets (eg. fonts, images, css)
│   ├── components/                  # widely used components
│   │   └── button/
│   ├── containers/                  # pages that handle routes
│   │   └── home/
|   │      └── components/           # components used by this container only
│   ├── modules/                     # store / actions / reducers
│   │   └── user.js
│   ├── index.css                    # common css
│   ├── index.js                     # entry point
│   ├── registerServiceWorker.js     # generated file for PWA
│   └── store.js                     # store entry point
├── .editorconfig                 # define your editor options
├── .env                          # global configuration
├── .env.local                    # override global configuration (not pushed to repository)
├── .env.development              # development-only configuration
└── .env.development.local        # override development-only configuration (not pushed to repository)

About

Application web de l'UTT Arena permettant aux joueurs d'accéder à des informations sur les tournois et au staff de gérer l'événement

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published