Home

Awesome

<p align="center">

Cardie Logo Cardie Logo

<!-- ![Hacktoberfest Banner](repo/images/hacktoberfest24.png) --> </p>
<div align="center">

Live Server

Wiki | Releases

The latest changes are available in the development branch! Please check there for the most up to date changes.

</div>

Design a unlimited number of business or information cards about yourself, share a link or QR code to them, print it out, and save other people's cards to your virtual wallet for later. Once you've created a card you can get analytics data on how your cards are getting visited, you can edit your cards as things change, and you can keep cards private so only people with a link to your card can see it.

[!IMPORTANT] Cardie is currently in an open alpha. Things will be rapidly changing and bugs are to be expected.

<div align="center"> <a href="https://skillicons.dev"> <img src="https://skillicons.dev/icons?i=django,python,html,css,js,github,git,alpinejs"/> </a> </div> <div align="center"> <img src="repo/images/screenshot1.png" style="border-radius: 10px; margin-top: 20px;"> </div> <!-- ## Hacktoberfest Happy Hacktoberfest! I hope that you find this project interesting and that some issues offer a good learning experience! Help of any kind would be greatly appreciated. - You can check out the [issues page](https://github.com/nfoert/issues) for anything that piques your interest, or you can check the [hacktoberfest tag](https://github.com/nfoert/cardie/issues?q=sort%3Aupdated-desc+is%3Aopen+label%3Ahacktoberfest) for specific issues I've selected for this Hacktoberfest. - Additionally, please check out [Contributing](#contributing) for some information on how you can contribute to this project. -->

Installation

First, clone this repository using the following command

git clone https://github.com/nfoert/cardie

Then, navigate to that directory and create a new python virtual environment

cd cardie
python3 -m venv .venv

Activate the virtual environment using the command for your system (Linux is used here) and install the required dependencies

source ./.venv/bin/activate
pip install -r requirements.txt
pip install -r requirements-dev.txt

Copy the .env.example file to a new file called .env.

cp .env-template .env

Next, create a django superuser and make and migrate the models

cd cardie
python manage.py createsuperuser
python manage.py makemigrations
python manage.py migrate

Now just run the server using the following command, or run the Start server task in your Visual Studio Code

python manage.py runserver

Finally, navigate to http://127.0.0.1:8000/admin and log in using your new administrator account. Create a new Server object and be sure to configure the ip to be http://127.0.0.1:8000.

Additional steps for Production installation

This depends on what server hosting provider you're using. However, there's a couple environment variables you need to set and there's a run command.

Set the following global environment variables:

Development

djlint

This project uses djlint to lint the templates. You can run this using the following command

djlint cardie --reformat

ruff

This project uses ruff to lint and format the code. You can run the following command to lint and format the code.

ruff check cardie --fix

For VS Code users, you can install the ruff extension to get linting and formatting on save.

Contributing

Please see CONTRIBUTING.md for instructions on how you can contribute to Cardie