Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Login branch #68

Open
wants to merge 64 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
64 commits
Select commit Hold shift + click to select a range
473ef13
remove legacy code
swve Sep 28, 2021
02f0b0d
🎉 initialization
swve Sep 28, 2021
7f01fb9
implement unit test
swve Sep 30, 2021
4a9dd9d
init header
swve Oct 12, 2021
7f91655
add footer and top index page
swve Oct 12, 2021
709e5be
Implement i18n
swve Oct 19, 2021
6540f3d
Use config
swve Oct 30, 2021
d5bede0
use config in test
swve Oct 30, 2021
a9cabb0
💥 switch to browser-based i18n
swve Oct 31, 2021
44d6ddc
🔖 move to Next 12
swve Oct 31, 2021
5a31f67
🔧 use config in webpages
swve Oct 31, 2021
43edabb
🔍 init head & SEO
swve Oct 31, 2021
c3f8210
🐛 fix bugs
swve Oct 31, 2021
5f02647
📝 change README + fix bugs
swve Oct 31, 2021
2129e84
✨ homepage with pagination
swve Nov 1, 2021
2af138f
📄 add license
swve Nov 1, 2021
6f400a7
add github actions
swve Nov 8, 2021
5af9ae7
fix ci issue
swve Nov 8, 2021
de8568f
Merge pull request #2 from mTixier/feat/ng
mTixier Nov 13, 2021
8c3f7e6
add multi corpus search service
swve Nov 16, 2021
9ebc906
init contact page & Service
swve Nov 16, 2021
be2da38
explore page
swve Nov 16, 2021
a5c6882
Merge pull request #3 from mTixier/feat/ng
mTixier Nov 23, 2021
14889d4
🐛 fix page number issue
swve Nov 28, 2021
f4a6337
update argos schema + init corpus page
swve Dec 4, 2021
1bce89d
POC Item page
swve Dec 4, 2021
19d3496
Merge pull request #4 from mTixier/feat/ng
mTixier Dec 7, 2021
d08522e
add corpus_id in the Home & Item page dataset
swve Dec 7, 2021
19248f3
fix previews
swve Dec 8, 2021
7671628
visual improvements
swve Dec 8, 2021
2c1de49
update colors from configfile
swve Dec 13, 2021
1c52f93
⬆️ upgrade dependencies
swve Dec 13, 2021
2e86ab0
♻️ refactor folders
swve Dec 13, 2021
6d44128
update readme
swve Dec 13, 2021
cb3fa3d
add list corpuses
swve Dec 14, 2021
831383a
add list viewpoints
swve Dec 14, 2021
4022c0f
implement corpus elements page
swve Dec 14, 2021
6be06d0
🎨 update favicon
swve Dec 14, 2021
a5feccd
Viewpoint topics/services + Fancy loading effects
swve Dec 19, 2021
54f3f49
💡 add comments
swve Dec 19, 2021
48d4bf2
Update README.md
swve Dec 19, 2021
580a4f6
disable @next/next/no-img-element
swve Dec 19, 2021
5357fc4
💄 use Layout
swve Dec 26, 2021
e2e951e
🗑️ Code cleaning
swve Dec 26, 2021
ce5591b
add getTopicItems service
swve Dec 26, 2021
306a994
header update
swve Dec 26, 2021
17fe61a
Merge pull request #5 from mTixier/feat/ng
mTixier Dec 28, 2021
238660b
topic & items rendering
swve Dec 31, 2021
d65a206
add Breadcrumb
swve Dec 31, 2021
d0d9927
fix preview issue & new item page design
swve Jan 1, 2022
1a5b38b
Update README.md
swve Jan 1, 2022
8eea37c
Update README.md
swve Jan 1, 2022
74381a0
item additional data
swve Jan 2, 2022
777ac3f
Merge pull request #6 from mTixier/feat/ng
mTixier Jan 5, 2022
2af210d
link in blank
swve Jan 5, 2022
283dfea
remove debug logging
swve Jan 5, 2022
58e9dfb
update readme
swve Jan 6, 2022
89e88b0
Merge pull request #7 from mTixier/feat/ng
swve Aug 10, 2022
d2a5a44
verifying that corpuses exists before returning them
charbeltrad1 Oct 3, 2022
d34c057
verifying that viewpoints exists before returning them
charbeltrad1 Oct 3, 2022
d5c30f9
Adding topics and attributs to the items pages
charbeltrad1 Oct 9, 2022
6602aa0
fixing paths problem
charbeltrad1 Oct 19, 2022
8df91f6
login page ready
charbeltrad1 Oct 30, 2022
bf82964
fixes
charbeltrad1 Nov 13, 2022
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
5 changes: 0 additions & 5 deletions .couchdb.ini

This file was deleted.

1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
MAILGUN_API_KEY="your_key"
9 changes: 9 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": "next/core-web-vitals",

"rules": {
"react/no-unescaped-entities": "off",
"@next/next/no-page-custom-font": "off",
"@next/next/no-img-element": "off"
}
}
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI
on:
push:
branches: [main, dev, feat/ng]
pull_request:
branches: [main, dev, feat/ng]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "14"
- run: npm ci
- run: npm run test

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "14"
- run: npm ci
- run: npm run build
38 changes: 38 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# vercel
.vercel


# VSCode
.vscode
2 changes: 0 additions & 2 deletions .rspec

This file was deleted.

32 changes: 0 additions & 32 deletions .travis.yml

This file was deleted.

Loading