https://github.com/cha-nox/url_shortener
URL shortener web app that I created to learn Flask on my own. I also recently added a proper Docker configuration in order to apply and extend what I've learned about it in class.
https://github.com/cha-nox/url_shortener
bcrypt docker docker-compose dockerfile flask gunicorn html-css jinja2 memcached postgresql postgresql-database pyjwt python3 scss wtforms
Last synced: 4 months ago
JSON representation
URL shortener web app that I created to learn Flask on my own. I also recently added a proper Docker configuration in order to apply and extend what I've learned about it in class.
- Host: GitHub
- URL: https://github.com/cha-nox/url_shortener
- Owner: cha-nox
- Created: 2023-11-28T15:12:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-11T23:12:09.000Z (over 1 year ago)
- Last Synced: 2025-04-21T17:58:14.557Z (about 1 year ago)
- Topics: bcrypt, docker, docker-compose, dockerfile, flask, gunicorn, html-css, jinja2, memcached, postgresql, postgresql-database, pyjwt, python3, scss, wtforms
- Language: Python
- Homepage:
- Size: 206 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Setup instructions
First, make sure to rename the "example.env" file to ".env" and replace the environnement informations with your ones in it. You also need to put your own database user and password in the "docker-compose.yaml" file.
Then, you can run the following commands to start the application in your Docker environnement. :
```sh
docker build -t easy_link:latest .
docker-compose up -d
```