- Website: ixswap.io
- Interface: app.ixswap.io
- Telegram: ixswapofficial
- X: @IxSwap
- Linkedin: IX Swap
- Mediun: IX Swap
Environment: Machine on Linux or MacOS Dependencies:
- yarn - at least v 1.22.
- npm - at least v 7.15.1
- node - at least v 14.17.0 Steps:
- Make sure your npm account is added to our [https://www.npmjs.com/settings/ixswap1/members](npm organization)
- run npm login. You need this to be able to install ixswap packages
- run
git clone [email protected]:IX-Swap/interface.git
- run
yarn build
- run
yarn start
The IXswap App supports swapping, adding liquidity, removing liquidity.
- Swap on IXswap: https://app.ixswap.io/swap
- View IXswap liquidity: https://app.ixswap.io/pool
- Add Liquidity: https://app.ixswap.io/add
cat <<-EOF >> .env
VERSION=v1
ENVIRONMENT=production
WEBSITE_NAME='IX-Swap-Web'
AWS_REGION=ap-southeast-1
AWS_APP_NAME=ix-swap-web
AWS_APPLY_CONFIRM=true
AWS_AZS='["ap-southeast-1a", "ap-southeast-1b"]'
#AWS_ACM_ARN=''
EOF
# Configure AWS CLI
aws configure
# Initialize terraform (s3 bucket for tf.status, plugins, modules etc)
./bin/tf-init.sh
# Apply infrastructure terraform scripts
./bin/tf-apply.sh
aws s3 sync ./build/ s3://<s3-buket-name>/ --acl public-read
aws s3 website s3://<s3-buket-name/ --index-document index.html
***end