Skip to content

athenekilta/vuebufferi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vuebufferi

Development setup

Clone & setup project (only first time):

# Clone repository
git clone [email protected]:athenekilta/vuebufferi.git
cd vuebufferi
# Create and activate virtualenv
python3 -m venv venv
. venv/bin/activate
# Install requirements (inside virtualenv)
pip install -r requirements.txt
# Generate a .env file with secret key
(echo 'import secrets'; echo 'print(f"SECRET_KEY={secrets.token_urlsafe()}")') | python > .env
# Run migrations
python manage.py migrate
# Create superuser for Django
python manage.py createsuperuser

Run development server:

# If venv is not already active
. venv/bin/activate
python manage.py runserver

Make and apply migrations

When you pull code that includes new migrations, you should run python manage.py migrate.

In case your code requires changes in the database, run python manage.py makemigrations followed by python manage.py migrate.

Contributing

Commit message style

Recommended style: commit.style.

Tietskarijengi members

Just commit your changes, use branches when necessary. Pull requests are great for reviewing.

External contributors

Pull requests welcome! Please explain what your change does and use descriptive commit messages etc.

Adding your name to contributors in LICENSE

Please add your name to the contributors in LICENSE when you make your first commit / pull request in this repository 🥰

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published