https://github.com/wildcodeschool/2109-wns-paris-backbones-project
https://github.com/wildcodeschool/2109-wns-paris-backbones-project
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wildcodeschool/2109-wns-paris-backbones-project
- Owner: WildCodeSchool
- Created: 2021-10-27T19:16:21.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-30T22:07:24.000Z (about 3 years ago)
- Last Synced: 2025-06-25T19:46:24.027Z (12 months ago)
- Language: TypeScript
- Size: 1.91 MB
- Stars: 2
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ticket App | Project Manager
The best ways to manage all your projects. JIRA and ASANA suck.
## DESKTOP
### Installation - dev
#### Follow those steps to run the project
Make sure you have .env files in the /back folder
Make sure you are at the origin of the folder and run:
```bash
docker-compose -f docker-compose-dev.yml up --build
```
Back: http://localhost:4000/
Front: http://localhost:3000/
### Installation - prod
#### Follow those steps to run the project
Make sure you have .env files in the /back folder
```bash
docker-compose up --build
```
## MOBILE
### Installation - mobile
#### Follow those steps to run the project
Run these commands to install mobile dependencies
```bash
cd mobile
yarn
```
Start the dev mobile app :
```bash
yarn start
```
Don't forget to start the back dev server as well
```bash
# at the root of the project
# Don't forget to add the .env files
docker-compose -f docker-compose-dev.yml up --build
```
## Tests
Make sure you have .env files!
### Back and Front tests are launched with github actions for validate each Pull Request
#### To launch tests:
```bash
yarn test
```
#### To launch tests with coverage:
```bash
yarn test:coverage
```
## Stacks
### Back
Node.js | TypeScript | Typeorm | TypeGraphql
### Front
React | TypeScript | Tailwind | Vite
### DataBase
Postgresql | BetterSqlite3
### test
Jest
### CI
Docker