Skip to content

An example implementation of a Stellar anchor server 🚀

License

Notifications You must be signed in to change notification settings

msfeldstein/stellar-anchor-server

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stellar Anchor Server – Example Implementation

CircleCI Coverage Status

This project is a WIP example implementation of a Stellar anchor server.

Its goal is to provide a community example implementation of SEP 6 (and related SEPs 9, 10 and 12) to make it easier for anchors to integrate with the Stellar network, and enable wallets to seamlessly integrate with said anchor.

You can check the project's roadmap here.

Running the project locally

This project was built using Pipenv.

  1. Install pipenv: $ brew install pipenv (on macOS)
  2. Install redis: $ brew install redis (on macOS)
  3. Inside the repo's root, install the project's dependencies: $ pipenv install
  4. You'll need a .env file (or the equivalent env vars defined). We provide a sample one, which you can copy and modify: $ cp .env.example .env
  5. Run the database migrations: $ pipenv run python src/manage.py migrate
  6. Run the redis server in the background: $ redis-server --daemonize yes
  7. Run celery: $ pipenv run celery worker --app app --beat --workdir src -l info
  8. Run the project: $ pipenv run python src/manage.py runserver

About

An example implementation of a Stellar anchor server 🚀

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.3%
  • HTML 0.7%