Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GENERATE_SOURCEMAP=false
47 changes: 47 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
'plugin:react/recommended',
'airbnb',
],
overrides: [
],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
plugins: [
'react',
],
rules: {
'no-shadow': 'off',
'react/react-in-jsx-scope': 'off',
'react/jsx-filename-extension': 'off',
'jsx-a11y/label-has-associated-control': 'off',
'jsx-a11y/click-events-have-key-events': 'off',
'jsx-a11y/no-static-element-interactions': 'off',
'jsx-a11y/media-has-caption': 'off',
'react/prop-types': 'off',
'array-callback-return': 'off',
'consistent-return': 'off',
'jsx-a11y/control-has-associated-label': 'off',
'no-param-reassign': 'off',
camelcase: 'off',
'max-len': 'off',
'no-useless-return': 'off',
'react/jsx-props-no-spreading': 'off',
'react/jsx-no-constructed-context-values': 'off',
'jsx-a11y/no-noninteractive-element-interactions': 'off',
'no-unused-vars': 'off',
'no-alert': 'off',
radix: 'off',
'no-plusplus': 'off',
'no-unsafe-optional-chaining': 'off',
'react/no-unescaped-entities': 'off',
'no-nested-ternary': 'off',
'import/no-extraneous-dependencies': 'off',
},
};
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
.env
24 changes: 24 additions & 0 deletions INSTALL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Title
Strapi Community Website

## Technologies
Reactjs, Strapi Design System and Tailwind CSS.

## Installation
1. Clone the repo
```
git clone https://github.com/Theodore-Kelechukwu-Onyejiaku/strapi-community-website.git
```

2. CD into the folder and run NPM install

```
npm i --force
```
3. Open port 3000
```
http://localhost:3000/
```

## Preview (Demo)
https://strapi-community-website.netlify.app/
Loading