A demo project in order to serve as a example of how to bind AngularJS and Django-rest-framework
In the console run the following commands
- Activate your virtualenv...
pip install -r requirements.txtcp smart_currencyer/settings_env.example.py smart_currencyer/settings_env.pypython manage.py migratepython manage.py loaddata fixtures/currencies.json- Create some users with:
python manage.py createsuperuser cd static/smart-currencyer-clientnpm install -g @angular/clinpm installng buildcd ..Two timespython manage.py runserver- Go to localhost
- Login with some users, create wallets, make transactions (notice that the sender and the receiver must have a wallet of same currency)
In the console run the following commands
-
Activate your virtualenv...
-
pip install -r requirements.txt -
cp smart_currencyer/settings_env.example.py smart_currencyer/settings_env.py -
python manage.py migrate -
python manage.py loaddata fixtures/currencies.json -
Create some users with:
python manage.py createsuperuser -
python manage.py runserver -
You can go to localhost and do crud from here but better use the client!
In the console run the following commands in order to develop
python manage.py runservercd static/smart-currencyer-clientnpm install -g @angular/clinpm installng serve --open- Login with some users, create wallets, make transactions (notice that the sender and the receiver must have a wallet of same currency)