Skip to content

Commit

Permalink
Merge pull request #148 from P4-Games/release/20241228
Browse files Browse the repository at this point in the history
merge release/20241228 into main
  • Loading branch information
dappsar authored Dec 28, 2024
2 parents 4a145f7 + 21757dc commit eb01f9b
Show file tree
Hide file tree
Showing 29 changed files with 12,942 additions and 14,955 deletions.
9 changes: 9 additions & 0 deletions .doc/content.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Content

## Development

- [Coding Guidelines](./development/coding-guidelines.md)

## Deployment

- [Deployment Guidelines](./deployment/deployment-guidelines.md)
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Deploy Guidelines
# Deployment Guidelines

## Upload Frontend to ICP

Expand Down
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@


FROM node:18-alpine AS deps
WORKDIR /app
COPY package.json package-lock.json ./
RUN apk add --no-cache libc6-compat && npm ci
COPY package.json yarn.lock ./
RUN apk add --no-cache libc6-compat bash curl && \
curl -o- -L https://yarnpkg.com/install.sh | bash && \
export PATH="$PATH:$(yarn global bin)" && \
yarn install --frozen-lockfile
#
FROM node:18-alpine AS builder
WORKDIR /app
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# ChatterPay

Chatterpay is a Wallet for WhatsApp that integrates AI and Account Abstraction, enabling any user to use blockchain easily and securely without technical knowledge.
[Chatterpay](chatterpay.net) is a Wallet for WhatsApp that integrates AI and Account Abstraction, enabling any user to use blockchain easily and securely without technical knowledge.

> Built for: [Level Up Hackathon - Ethereum Argentina 2024](https://ethereumargentina.org/)
Expand Down Expand Up @@ -102,9 +102,13 @@ To deploy the landing (static code) to the [Internet Computer (ICP)](https://int

URL of the deployed app on ICP: https://cilxj-yiaaa-aaaag-alkxq-cai.icp0.io/


# Additional Info

## Technical Documentation

If you would like to explore more details about the source code, you can review this [link](.doc/content.md).


## Contribution

Thank you for considering helping out with the source code! We welcome contributions from anyone on the internet, and are grateful for even the smallest of fixes!
Expand All @@ -113,13 +117,9 @@ If you'd like to contribute to ChatterPay, please fork, fix, commit and send a p

Please make sure your contributions adhere to our [coding guidelines](./.doc/development/coding-guidelines.md).

## Contributors

[P4Troy](https://github.com/mpefaur) - [dappsar](https://github.com/dappsar) - [tomasDmArg](https://github.com/TomasDmArg)

see more in: <https://github.com/P4-Games/chatterPay/graphs/contributors>
_Contributors_:

* [P4Troy](https://github.com/mpefaur) - [dappsar](https://github.com/dappsar) - [tomasDmArg](https://github.com/TomasDmArg)

## Maintenance
* See more in: <https://github.com/P4-Games/chatterPay/graphs/contributors>

- [Maintenance Scripts](./.doc/maintenance/maintenance-scripts.md)
2 changes: 1 addition & 1 deletion example_env
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ NEXT_PUBLIC_UI_URL=http://localhost:3000
NEXT_PUBLIC_ALLOWED_ORIGINS=http://localhost:3000
NEXT_PUBLIC_RECAPTCHA_SITE_KEY={recaptcha side key}
NEXT_PUBLIC_NFT_IMAGE_REPOSITORY={gcp|ipfs|icp}
NEXT_PUBLIC_NFT_MARKETPLACE_URL=https://testnets.opensea.io/assets/arbitrum-sepolia/0xAc3F97E45F67052b1AdBbC4d4eB1153Ba14E955d
NEXT_PUBLIC_NFT_MARKETPLACE_URL=https://testnets.opensea.io/assets/arbitrum_sepolia/0xAc3F97E45F67052b1AdBbC4d4eB1153Ba14E955d

Loading

0 comments on commit eb01f9b

Please sign in to comment.