https://github.com/nukeop/fission
link shortening service built with Django
https://github.com/nukeop/fission
Last synced: over 1 year ago
JSON representation
link shortening service built with Django
- Host: GitHub
- URL: https://github.com/nukeop/fission
- Owner: nukeop
- License: gpl-3.0
- Created: 2017-03-05T19:53:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-05T20:35:27.000Z (over 9 years ago)
- Last Synced: 2025-02-09T05:33:13.088Z (over 1 year ago)
- Language: Python
- Size: 21.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## What's this?
Very simple and basic link shortening service built with Django.
## Running
cd into the project directory and input these commands in bash:
```
$ mkdir venv
$ virtualenv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
$ fission/manage.py makemigrations shortener
$ fission/manage.py migrate
$ fission/manage.py runserver
```
## Assumptions
- create_fake_users will be used to generate a non-zero number of fake users before any link shortening takes place