Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dasjideepak committed Jan 17, 2022
0 parents commit 8e20b16
Show file tree
Hide file tree
Showing 20 changed files with 32,499 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
build
node_modules
.github
public/
25 changes: 25 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"env": {
"browser": true,
"es2021": true,
"jest": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react", "prettier"],
"rules": {
"react/react-in-jsx-scope": "off",
"prettier/prettier": "error"
}
}
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx commitlint --edit
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
build
node_modules
.github
public/
7 changes: 7 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"endOfLine": "auto"
}
59 changes: 59 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Safar-Saathi

Safar-Saathi, a web app to connect solo travelers with welcoming hosts all over the world, where they can stay by exchanging their skills for accommodation

## Run Locally

Clone the project

```bash
git clone https://github.com/pesto-students/safar-saathi-fe-n13-delta-2
```

Go to the project directory

```bash
cd safar-saathi-fe-n13-delta-2
```

Install dependencies

```bash
npm install
```

Start the server

```bash
npm start
```

## Running Tests

To run tests, run the following command

```bash
npm run test
```

## Tech Stack

**Frontend:** React, Redux, SASS/SCSS, and Material UI

**Backend:** Node, and Express

**Database** PostgreSQL

**Deployment** AWS S3, Netlify, and Heroku

**Testing** React Testing Library/Jest

## Team

Developer - [@katherinepeterson](https://www.github.com/dasjideepak)

Mentor - [@rachit1994](https://www.github.com/rachit1994)

## Feedback

If you have any feedback, please reach out to us at [email protected]
4 changes: 4 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {},
}
Loading

0 comments on commit 8e20b16

Please sign in to comment.