This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
ambition-legacy/backend
2023-07-27 15:57:32 +01:00
..
sql feat(backend): Create Users and Get JWT 2023-07-26 21:16:25 +01:00
.gitignore feat(backend): Create Users and Get JWT 2023-07-26 21:16:25 +01:00
go.mod feat(backend): Create Users and Get JWT 2023-07-26 21:16:25 +01:00
go.sum feat(backend): Create Users and Get JWT 2023-07-26 21:16:25 +01:00
main.go chore(backend): polish things up a little 2023-07-26 22:09:31 +01:00
README.md docs(backend): improve README 2023-07-27 15:57:32 +01:00
user.go chore(backend): polish things up a little 2023-07-26 22:09:31 +01:00
util.go feat(backend): Create Users and Get JWT 2023-07-26 21:16:25 +01:00

Backend Usage

In order to run the backend, you need to have sqlite3 installed on your system. Once you do, make a database file named users.db and initialize it with the sql/init.sql script:

$ cat sql/init.sql | sqlite3 users.db

You can optionally provide the PORT environment variable to override the default port of 7741