An app to create lists of web bookmarks
- In your terminal, navigate to the directory you would like the app to live in
- Still in your terminal, execute the code
git clone https://github.com/jluria/bookmarkr.gitto clone this repository cdinto that directory and create your virtual environment using virtualenv
- If you don't have virtualenv, you can install it via pip
- Many people call their virtual environment directory
env
- Activate your virtual environment by running
source env/bin/activate - Run the command
pip install djangoto install Django - Run the command
python manage.py migrateto migrate the existing migrations and create the database - Run the command
python manage.py runserverto run the local webserver - Run the command
python manage.py createsuperuserand follow the prompts to create an admin login - Open a browser and navigate the localhost:8000/admin to log in to the admin site and create a public account user
- Navigate to localhost:8000/ and log in to begin using the app!