-
Notifications
You must be signed in to change notification settings - Fork 25
quickstart
Wang Juntao edited this page Feb 12, 2023
·
2 revisions
- Operating System:Support cross-platform deployment (Linux, Windows, MacOS, etc.)
- Database server: PostgreSQL 14+
- Golang 1.19+
Please do the installation and configuration yourself, first make sure your database server is running.
Running database creation scripts and creating dedicated users
CREATE USER teamsacs WITH PASSWORD 'teamsacs';
CREATE DATABASE teamsacs WITH OWNER teamsacs;
GRANT ALL PRIVILEGES ON DATABASE teamsacs TO teamsacs;
The following installation method will download and build the latest teamsacs version
go install github.com/ca17/teamsacs@latest
teamsacs -install
If you want to download the compiled binaries directly, you can visit Github Release
Before proceeding, make sure that you have created the database and that the database server is running
Modifying configuration file /etc/teamsacs.yml
Start the service with the following commands
systemctl enable teamsacs
systemctl start teamsacs
Open the browser and enter the URL: http://your-ip:2979
The default username and password are admin/teamsacs