https://github.com/jms/potential-bassoon
URL Shortening service (Django)
https://github.com/jms/potential-bassoon
Last synced: 8 months ago
JSON representation
URL Shortening service (Django)
- Host: GitHub
- URL: https://github.com/jms/potential-bassoon
- Owner: jms
- License: bsd-3-clause
- Created: 2016-11-24T00:34:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-06-05T17:31:24.000Z (about 6 years ago)
- Last Synced: 2025-02-28T16:42:43.648Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# potential-bassoon [](https://travis-ci.org/jms/potential-bassoon)
### Setup instructions
Requirements:
- Python 3
- PostgreSQL
- virtualenvwrapper(optional for development)
```bash
# local development
git clone https://github.com/jms/potential-bassoon.git
cd potential-bassoon
mkvirtualenv -p /usr/bin/python3 venv
pip install -r requirements.txt
# setup the database, replace the connection string using the env.sample file
# as reference
cp env.sample .env
# run the migrations
./manage.py migrate # or python manage.py migrate
# create the fake users
./manage.py create_fake_users 100
# for verbose output
# ./manage.py create_fake_users -v2 100
# running the application
./manage.py runserver # or just run make
# go to http://localhost:8000
```
Application running on Heroku for demo purpose:
https://fast-woodland-88106.herokuapp.com/